In [1]:
!nvidia-smi
Tue Sep 17 05:01:28 2024       
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 555.52.01              Driver Version: 555.99         CUDA Version: 12.5     |
|-----------------------------------------+------------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce RTX 4050 ...    On  |   00000000:01:00.0  On |                  N/A |
| N/A   57C    P8              5W /   49W |     658MiB /   6141MiB |      7%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+
                                                                                         
+-----------------------------------------------------------------------------------------+
| Processes:                                                                              |
|  GPU   GI   CI        PID   Type   Process name                              GPU Memory |
|        ID   ID                                                               Usage      |
|=========================================================================================|
|  No running processes found                                                             |
+-----------------------------------------------------------------------------------------+
In [1]:
from ultralytics import YOLO

Untrained¶

untrained model sample¶

In [3]:
model_untrained=YOLO('yolov10n.yaml') # untrained
In [11]:
results = model_untrained("img1.jpg")
results[0].show()
image 1/1 /mnt/d/workspace/Pothole/img1.jpg: 640x640 (no detections), 122.8ms
Speed: 3.3ms preprocess, 122.8ms inference, 1.0ms postprocess per image at shape (1, 3, 640, 640)
No description has been provided for this image

untrained model training v10n_u_trained_10¶

In [12]:
#training to 10, saved as v10n_u_trained
model_untrained.train(data="dataset/data.yaml", batch=8, epochs=10, imgsz=640)
New https://pypi.org/project/ultralytics/8.2.95 available 😃 Update with 'pip install -U ultralytics'
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
engine/trainer: task=detect, mode=train, model=yolov10n.yaml, data=dataset/data.yaml, epochs=10, time=None, patience=100, batch=8, imgsz=640, save=True, save_period=-1, cache=False, device=None, workers=8, project=None, name=train2, exist_ok=False, pretrained=True, optimizer=auto, verbose=True, seed=0, deterministic=True, single_cls=False, rect=False, cos_lr=False, close_mosaic=10, resume=False, amp=True, fraction=1.0, profile=False, freeze=None, multi_scale=False, overlap_mask=True, mask_ratio=4, dropout=0.0, val=True, split=val, save_json=False, save_hybrid=False, conf=None, iou=0.7, max_det=300, half=False, dnn=False, plots=True, source=None, vid_stride=1, stream_buffer=False, visualize=False, augment=False, agnostic_nms=False, classes=None, retina_masks=False, embed=None, show=False, save_frames=False, save_txt=False, save_conf=False, save_crop=False, show_labels=True, show_conf=True, show_boxes=True, line_width=None, format=torchscript, keras=False, optimize=False, int8=False, dynamic=False, simplify=False, opset=None, workspace=4, nms=False, lr0=0.01, lrf=0.01, momentum=0.937, weight_decay=0.0005, warmup_epochs=3.0, warmup_momentum=0.8, warmup_bias_lr=0.1, box=7.5, cls=0.5, dfl=1.5, pose=12.0, kobj=1.0, label_smoothing=0.0, nbs=64, hsv_h=0.015, hsv_s=0.7, hsv_v=0.4, degrees=0.0, translate=0.1, scale=0.5, shear=0.0, perspective=0.0, flipud=0.0, fliplr=0.5, bgr=0.0, mosaic=1.0, mixup=0.0, copy_paste=0.0, auto_augment=randaugment, erasing=0.4, crop_fraction=1.0, cfg=None, tracker=botsort.yaml, save_dir=runs/detect/train2
Overriding model.yaml nc=80 with nc=1

                   from  n    params  module                                       arguments                     
  0                  -1  1       464  ultralytics.nn.modules.conv.Conv             [3, 16, 3, 2]                 
  1                  -1  1      4672  ultralytics.nn.modules.conv.Conv             [16, 32, 3, 2]                
  2                  -1  1      7360  ultralytics.nn.modules.block.C2f             [32, 32, 1, True]             
  3                  -1  1     18560  ultralytics.nn.modules.conv.Conv             [32, 64, 3, 2]                
  4                  -1  2     49664  ultralytics.nn.modules.block.C2f             [64, 64, 2, True]             
  5                  -1  1      9856  ultralytics.nn.modules.block.SCDown          [64, 128, 3, 2]               
  6                  -1  2    197632  ultralytics.nn.modules.block.C2f             [128, 128, 2, True]           
  7                  -1  1     36096  ultralytics.nn.modules.block.SCDown          [128, 256, 3, 2]              
  8                  -1  1    460288  ultralytics.nn.modules.block.C2f             [256, 256, 1, True]           
  9                  -1  1    164608  ultralytics.nn.modules.block.SPPF            [256, 256, 5]                 
 10                  -1  1    249728  ultralytics.nn.modules.block.PSA             [256, 256]                    
 11                  -1  1         0  torch.nn.modules.upsampling.Upsample         [None, 2, 'nearest']          
 12             [-1, 6]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 13                  -1  1    148224  ultralytics.nn.modules.block.C2f             [384, 128, 1]                 
 14                  -1  1         0  torch.nn.modules.upsampling.Upsample         [None, 2, 'nearest']          
 15             [-1, 4]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 16                  -1  1     37248  ultralytics.nn.modules.block.C2f             [192, 64, 1]                  
 17                  -1  1     36992  ultralytics.nn.modules.conv.Conv             [64, 64, 3, 2]                
 18            [-1, 13]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 19                  -1  1    123648  ultralytics.nn.modules.block.C2f             [192, 128, 1]                 
 20                  -1  1     18048  ultralytics.nn.modules.block.SCDown          [128, 128, 3, 2]              
 21            [-1, 10]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 22                  -1  1    282624  ultralytics.nn.modules.block.C2fCIB          [384, 256, 1, True, True]     
 23        [16, 19, 22]  1    861718  ultralytics.nn.modules.head.v10Detect        [1, [64, 128, 256]]           
YOLOv10n summary: 385 layers, 2,707,430 parameters, 2,707,414 gradients, 8.4 GFLOPs

Freezing layer 'model.23.dfl.conv.weight'
AMP: running Automatic Mixed Precision (AMP) checks with YOLOv8n...
AMP: checks passed ✅
train: Scanning /mnt/d/workspace/cv/dl/66e31d6ee96cd_student_resource_3/student_resource 3/datasets/dataset/train/labels.cache... 720 images
val: Scanning /mnt/d/workspace/cv/dl/66e31d6ee96cd_student_resource_3/student_resource 3/datasets/dataset/valid/labels.cache... 60 images, 0
Plotting labels to runs/detect/train2/labels.jpg... 
optimizer: 'optimizer=auto' found, ignoring 'lr0=0.01' and 'momentum=0.937' and determining best 'optimizer', 'lr0' and 'momentum' automatically... 
optimizer: AdamW(lr=0.002, momentum=0.9) with parameter groups 95 weight(decay=0.0), 108 weight(decay=0.0005), 107 bias(decay=0.0)
Image sizes 640 train, 640 val
Using 8 dataloader workers
Logging results to runs/detect/train2
Starting training for 10 epochs...
Closing dataloader mosaic

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       1/10      9.88G      6.942      15.07      8.414         12        640: 100%|██████████| 90/90 [01:15<00:00,  1.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:03<00:00,  1.06it/s]
                   all         60        201    0.00156      0.139   0.000895   0.000381

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       2/10      2.27G      6.356      12.03      7.805         28        640: 100%|██████████| 90/90 [00:14<00:00,  6.15it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.59it/s]
                   all         60        201     0.0018      0.159     0.0053    0.00202

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       3/10      2.25G      5.687      9.567      6.859         18        640: 100%|██████████| 90/90 [00:14<00:00,  6.42it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.45it/s]
                   all         60        201    0.00348      0.299    0.00588    0.00151

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       4/10      2.25G      5.291      8.372      6.281         22        640: 100%|██████████| 90/90 [00:12<00:00,  7.19it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.24it/s]
                   all         60        201    0.00493      0.398     0.0147    0.00446

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       5/10      2.25G      5.089      7.788      5.993         22        640: 100%|██████████| 90/90 [00:12<00:00,  7.18it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.77it/s]
                   all         60        201     0.0136      0.428     0.0328    0.00941

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       6/10      2.25G      4.877      7.338      5.742         17        640: 100%|██████████| 90/90 [00:12<00:00,  7.05it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.38it/s]
                   all         60        201    0.00761      0.682     0.0603     0.0174

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       7/10      2.25G       4.68      6.897      5.549         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.31it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.238     0.0647     0.0653     0.0229

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       8/10      2.25G      4.713      6.688       5.45         22        640: 100%|██████████| 90/90 [00:12<00:00,  7.14it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.88it/s]
                   all         60        201      0.171     0.0498     0.0717     0.0251

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
       9/10      2.25G      4.553      6.465      5.312         19        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.75it/s]
                   all         60        201      0.253     0.0945     0.0807     0.0292

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      10/10      2.25G      4.584      6.314      5.319         19        640: 100%|██████████| 90/90 [00:12<00:00,  7.28it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.35it/s]
                   all         60        201       0.24     0.0597      0.082     0.0283

10 epochs completed in 0.057 hours.
Optimizer stripped from runs/detect/train2/weights/last.pt, 5.7MB
Optimizer stripped from runs/detect/train2/weights/best.pt, 5.7MB

Validating runs/detect/train2/weights/best.pt...
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
YOLOv10n summary (fused): 285 layers, 2,694,806 parameters, 0 gradients, 8.2 GFLOPs
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:01<00:00,  2.46it/s]
                   all         60        201      0.253     0.0945     0.0806     0.0292
Speed: 4.4ms preprocess, 6.1ms inference, 0.0ms loss, 0.2ms postprocess per image
Results saved to runs/detect/train2
Out[12]:
ultralytics.utils.metrics.DetMetrics object with attributes:

ap_class_index: array([0])
box: ultralytics.utils.metrics.Metric object
confusion_matrix: <ultralytics.utils.metrics.ConfusionMatrix object at 0x7f2fe9993ca0>
curves: ['Precision-Recall(B)', 'F1-Confidence(B)', 'Precision-Confidence(B)', 'Recall-Confidence(B)']
curves_results: [[array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[          1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,     0.57143,     0.57143,     0.57143,     0.57143,     0.57143,     0.29412,     0.29412,     0.29412,
            0.29412,     0.29412,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,
            0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,     0.28571,
            0.28571,     0.27119,     0.27119,     0.27119,     0.27119,     0.27119,     0.27119,     0.27119,     0.27119,     0.27119,     0.27119,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,     0.26761,
            0.26761,     0.26761,     0.26761,     0.25316,     0.25316,     0.25316,     0.25316,     0.25316,     0.25301,     0.25301,     0.25301,     0.25301,     0.25301,     0.22917,     0.22917,     0.22917,     0.22917,     0.22917,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,
            0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.21849,     0.20455,     0.20455,     0.20455,     0.20455,     0.20455,     0.20139,     0.20139,     0.20139,
            0.20139,     0.20139,     0.20139,     0.20139,     0.20139,     0.20139,     0.20139,     0.17241,     0.17241,     0.17241,     0.17241,     0.17241,     0.16583,     0.16583,     0.16583,     0.16583,     0.16583,     0.16583,     0.16583,     0.16583,     0.16583,     0.16583,     0.16583,
            0.16583,     0.16583,     0.16583,     0.16583,     0.16346,     0.16346,     0.16346,     0.16346,     0.14403,     0.14403,     0.14403,     0.14403,     0.14403,     0.13953,     0.13953,     0.13953,     0.13953,     0.13953,     0.13653,     0.13653,     0.13653,     0.13653,     0.13653,
             0.1324,      0.1324,      0.1324,      0.1324,      0.1324,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.13141,     0.12766,     0.12766,     0.12766,
            0.12766,     0.12766,     0.12717,     0.12717,     0.12717,     0.12717,     0.12717,     0.12717,     0.12717,     0.12717,     0.12717,     0.12717,     0.11811,     0.11811,     0.11811,     0.11811,     0.11811,     0.11765,     0.11765,     0.11765,     0.11765,     0.11765,     0.11692,
            0.11692,     0.11692,     0.11692,     0.11692,    0.095331,    0.095331,    0.095331,    0.095331,    0.095331,    0.095331,    0.095331,    0.095331,    0.095331,    0.095331,    0.082658,    0.082658,    0.082658,    0.082658,    0.082658,    0.082658,    0.082658,    0.082658,    0.082658,
           0.082658,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.078014,    0.073548,    0.073548,
           0.073548,    0.073548,    0.073548,    0.073548,    0.073548,    0.073548,    0.073548,    0.073548,    0.067052,    0.067052,    0.067052,    0.067052,    0.067052,    0.066161,    0.066161,    0.066161,    0.066161,    0.066161,    0.066161,    0.066161,    0.066161,    0.066161,    0.066161,
           0.066161,    0.066161,    0.066161,    0.066161,    0.066161,    0.062438,    0.062438,    0.062438,    0.062438,    0.062438,    0.062438,    0.062438,    0.062438,    0.062438,    0.062438,    0.061836,    0.061836,    0.061836,    0.061836,    0.061836,    0.061495,    0.061495,    0.061495,
           0.061495,    0.061495,    0.057844,    0.057844,    0.057844,    0.057844,    0.057844,    0.056684,    0.056684,    0.056684,    0.056684,    0.054531,    0.054531,    0.054531,    0.054531,    0.054531,    0.053655,    0.053655,    0.053655,    0.053655,    0.053655,    0.052278,    0.052278,
           0.052278,    0.052278,    0.052278,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.051192,    0.048588,    0.048588,    0.048588,    0.048588,    0.048588,
           0.048193,    0.048193,    0.048193,    0.048193,    0.048193,    0.048193,    0.048193,    0.048193,    0.048193,    0.048193,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,
           0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.047591,    0.046421,    0.046421,    0.046421,    0.046421,    0.046421,    0.046421,    0.046421,    0.046421,    0.046421,    0.046421,    0.045575,
           0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045575,    0.045031,    0.045031,    0.045031,    0.045031,    0.045031,    0.043929,    0.043929,    0.043929,    0.043929,
           0.043929,    0.043929,    0.043929,    0.043929,    0.043929,    0.043929,    0.040395,    0.040395,    0.040395,    0.040395,    0.040395,     0.03993,     0.03993,     0.03993,     0.03993,     0.03993,    0.038196,    0.038196,    0.038196,    0.038196,    0.038196,    0.038196,    0.038196,
           0.038196,    0.038196,    0.038196,    0.038196,    0.038196,    0.038196,    0.038196,    0.038196,    0.036581,    0.036581,    0.036581,    0.036581,    0.036581,    0.036281,    0.036281,    0.036281,    0.036281,    0.036281,    0.032226,    0.032226,    0.032226,    0.032226,    0.032226,
           0.030905,    0.030905,    0.030905,    0.030905,    0.030905,    0.030793,    0.030793,    0.030793,    0.030793,    0.030793,    0.029727,    0.029727,    0.029727,    0.029727,    0.029727,     0.02942,     0.02942,     0.02942,     0.02942,    0.028389,    0.028389,    0.028389,    0.028389,
           0.028389,    0.027241,    0.027241,    0.027241,    0.027241,    0.027241,    0.026609,    0.026609,    0.026609,    0.026609,    0.026609,    0.026609,    0.026609,    0.026609,    0.026609,    0.026609,    0.026076,    0.026076,    0.026076,    0.026076,    0.026076,    0.025562,    0.025562,
           0.025562,    0.025562,    0.025562,    0.025562,    0.025562,    0.025562,    0.025562,    0.025562,    0.024914,    0.024914,    0.024914,    0.024914,    0.024914,    0.024472,    0.024472,    0.024472,    0.024472,    0.024472,    0.023354,    0.023354,    0.023354,    0.023354,    0.023354,
           0.022829,    0.022829,    0.022829,    0.022829,    0.022829,    0.021309,    0.021309,    0.021309,    0.021309,    0.021309,    0.021213,    0.021213,    0.021213,    0.021213,    0.021213,     0.02106,     0.02106,     0.02106,     0.02106,     0.02106,     0.02106,     0.02106,     0.02106,
            0.02106,     0.02106,      0.0208,      0.0208,      0.0208,      0.0208,      0.0208,    0.019446,    0.019446,    0.019446,    0.019446,    0.019446,     0.01932,     0.01932,     0.01932,     0.01932,     0.01932,     0.01932,     0.01932,     0.01932,     0.01932,     0.01932,     0.01932,
            0.01932,     0.01932,     0.01932,     0.01932,    0.018738,    0.018738,    0.018738,    0.018738,    0.018738,    0.018265,    0.018265,    0.018265,    0.018265,    0.018265,    0.018265,    0.018265,    0.018265,    0.018265,    0.018265,    0.018219,    0.018219,    0.018219,    0.018219,
           0.018219,    0.018145,    0.018145,    0.018145,    0.018145,    0.018145,    0.017908,    0.017908,    0.017908,    0.017908,    0.017908,      0.0173,      0.0173,      0.0173,      0.0173,      0.0173,    0.017205,    0.017205,    0.017205,    0.017205,    0.017205,    0.017045,    0.017045,
           0.017045,    0.017045,    0.017045,    0.016851,    0.016851,    0.016851,    0.016851,    0.016851,    0.016566,    0.016566,    0.016566,    0.016566,    0.016566,     0.01654,     0.01654,     0.01654,     0.01654,     0.01654,    0.016075,    0.016075,    0.016075,    0.016075,    0.015459,
           0.015459,    0.015459,    0.015459,    0.015459,     0.01536,     0.01536,     0.01536,     0.01536,     0.01536,    0.014817,    0.014817,    0.014817,    0.014817,    0.014817,    0.014458,    0.014458,    0.014458,    0.014458,    0.014458,    0.012786,    0.012786,    0.012786,    0.012786,
           0.012786,    0.012786,    0.012786,    0.012786,    0.012786,    0.012786,    0.012786,    0.012786,    0.012786,    0.012786,    0.012786,    0.012593,    0.012593,    0.012593,    0.012593,    0.012593,    0.012313,    0.012313,    0.012313,    0.012313,    0.012313,    0.012055,    0.012055,
           0.012055,    0.012055,    0.012055,    0.010881,    0.010881,    0.010881,    0.010881,    0.010881,    0.010832,    0.010832,    0.010832,    0.010832,    0.010832,   0.0088357,   0.0088357,   0.0088357,   0.0088357,   0.0088357,   0.0083835,   0.0083523,    0.008321,   0.0082897,   0.0082584,
          0.0082271,   0.0081959,   0.0081646,   0.0081333,    0.008102,   0.0080707,   0.0080394,   0.0080082,   0.0079769,   0.0079456,   0.0079143,    0.007883,   0.0078518,   0.0078205,   0.0077892,   0.0077579,   0.0077266,   0.0076953,   0.0076641,   0.0076328,   0.0076015,   0.0075702,   0.0075389,
          0.0075077,   0.0074764,   0.0074451,   0.0074138,   0.0073825,   0.0073512,     0.00732,   0.0072887,   0.0072574,   0.0072261,   0.0071948,   0.0071635,   0.0071323,    0.007101,   0.0070697,   0.0070384,   0.0070071,   0.0069759,   0.0069446,   0.0069133,    0.006882,   0.0068507,   0.0068194,
          0.0067882,   0.0067569,   0.0067256,   0.0066943,    0.006663,   0.0066318,   0.0066005,   0.0065692,   0.0065379,   0.0065066,   0.0064753,   0.0064441,   0.0064128,   0.0063815,   0.0063502,   0.0063189,   0.0062877,   0.0062564,   0.0062251,   0.0061938,   0.0061625,   0.0061312,      0.0061,
          0.0060687,   0.0060374,   0.0060061,   0.0059748,   0.0059436,   0.0059123,    0.005881,   0.0058497,   0.0058184,   0.0057871,   0.0057559,   0.0057246,   0.0056933,    0.005662,   0.0056307,   0.0055995,   0.0055682,   0.0055369,   0.0055056,   0.0054743,    0.005443,   0.0054118,   0.0053805,
          0.0053492,   0.0053179,   0.0052866,   0.0052554,   0.0052241,   0.0051928,   0.0051615,   0.0051302,   0.0050989,   0.0050677,   0.0050364,   0.0050051,   0.0049738,   0.0049425,   0.0049113,     0.00488,   0.0048487,   0.0048174,   0.0047861,   0.0047548,   0.0047236,   0.0046923,    0.004661,
          0.0046297,   0.0045984,   0.0045672,   0.0045359,   0.0045046,   0.0044733,    0.004442,   0.0044107,   0.0043795,   0.0043482,   0.0043169,   0.0042856,   0.0042543,   0.0042231,   0.0041918,   0.0041605,   0.0041292,   0.0040979,   0.0040666,   0.0040354,   0.0040041,   0.0039728,   0.0039415,
          0.0039102,    0.003879,   0.0038477,   0.0038164,   0.0037851,   0.0037538,   0.0037225,   0.0036913,     0.00366,   0.0036287,   0.0035974,   0.0035661,   0.0035349,   0.0035036,   0.0034723,    0.003441,   0.0034097,   0.0033784,   0.0033472,   0.0033159,   0.0032846,   0.0032533,    0.003222,
          0.0031908,   0.0031595,   0.0031282,   0.0030969,   0.0030656,   0.0030343,   0.0030031,   0.0029718,   0.0029405,   0.0029092,   0.0028779,   0.0028467,   0.0028154,   0.0027841,   0.0027528,   0.0027215,   0.0026902,    0.002659,   0.0026277,   0.0025964,   0.0025651,   0.0025338,   0.0025026,
          0.0024713,     0.00244,   0.0024087,   0.0023774,   0.0023461,   0.0023149,   0.0022836,   0.0022523,    0.002221,   0.0021897,   0.0021584,   0.0021272,   0.0020959,   0.0020646,   0.0020333,    0.002002,   0.0019708,   0.0019395,   0.0019082,   0.0018769,   0.0018456,   0.0018143,   0.0017831,
          0.0017518,   0.0017205,   0.0016892,   0.0016579,   0.0016267,   0.0015954,   0.0015641,   0.0015328,   0.0015015,   0.0014702,    0.001439,   0.0014077,   0.0013764,   0.0013451,   0.0013138,   0.0012826,   0.0012513,     0.00122,   0.0011887,   0.0011574,   0.0011261,   0.0010949,   0.0010636,
          0.0010323,    0.001001,  0.00096974,  0.00093846,  0.00090717,  0.00087589,  0.00084461,  0.00081333,  0.00078205,  0.00075077,  0.00071948,   0.0006882,  0.00065692,  0.00062564,  0.00059436,  0.00056307,  0.00053179,  0.00050051,  0.00046923,  0.00043795,  0.00040666,  0.00037538,   0.0003441,
         0.00031282,  0.00028154,  0.00025026,  0.00021897,  0.00018769,  0.00015641,  0.00012513,  9.3846e-05,  6.2564e-05,  3.1282e-05,           0]]), 'Recall', 'Precision'], [array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[   0.016601,    0.016623,    0.023969,    0.032056,     0.03776,    0.044769,    0.050135,    0.057239,    0.064715,    0.070473,    0.076824,    0.080465,    0.083382,    0.086688,    0.090262,    0.095852,     0.10015,     0.10384,     0.10781,     0.10921,     0.11585,     0.11832,      0.1187,
            0.12186,     0.12212,     0.12722,     0.13269,     0.13377,     0.13952,     0.14707,     0.15171,     0.15456,     0.15543,     0.15476,     0.15622,     0.15095,      0.1554,     0.15358,     0.15677,     0.15768,     0.16403,     0.15711,     0.15655,     0.15721,     0.16165,     0.16541,
            0.15993,     0.15747,     0.16166,     0.15263,     0.14528,     0.14228,     0.14535,     0.14717,     0.14223,     0.13694,     0.13759,     0.13917,     0.12977,     0.12798,     0.12161,     0.12208,     0.11858,     0.11629,     0.10972,     0.11101,     0.10496,      0.1047,    0.097773,
           0.097747,    0.090971,    0.091218,    0.091468,    0.090836,    0.086613,    0.079184,    0.076313,    0.076511,     0.06879,    0.067809,    0.060587,    0.052194,    0.052323,      0.0515,    0.049126,    0.046752,    0.044376,    0.044062,    0.044114,    0.044165,    0.044215,    0.044257,
           0.044285,    0.044312,    0.044339,    0.044366,    0.044392,    0.044419,    0.044447,    0.044589,    0.044826,    0.044893,    0.044944,    0.044995,    0.045044,    0.045228,    0.045322,    0.045402,    0.045491,    0.045602,    0.045778,    0.044403,    0.042097,    0.039789,     0.03748,
           0.036921,    0.036993,    0.037051,    0.037091,     0.03713,    0.037167,    0.037204,    0.037262,    0.037322,    0.037379,    0.037413,    0.037446,    0.037477,    0.037507,    0.037537,    0.037563,    0.037579,    0.037595,     0.03761,    0.037626,    0.037641,    0.037656,    0.037671,
           0.037685,      0.0377,    0.037714,    0.037728,    0.037957,    0.038049,      0.0381,    0.038112,    0.038123,    0.038133,    0.038144,    0.038155,    0.038165,    0.038175,    0.038185,    0.038195,    0.038205,    0.038215,    0.038225,    0.038234,    0.038244,    0.038253,    0.038262,
           0.038271,    0.038332,    0.038319,    0.037601,    0.036882,    0.036164,    0.035445,    0.034726,    0.034007,    0.033288,    0.032568,    0.031848,    0.031128,    0.030407,    0.029686,    0.028986,    0.028999,    0.029013,    0.029025,    0.029038,     0.02905,    0.029061,    0.029073,
           0.029084,    0.029094,    0.029105,    0.029115,    0.029125,    0.029153,    0.029182,    0.029209,    0.029234,    0.029257,    0.029292,    0.029336,    0.029374,    0.029406,    0.029273,    0.029102,    0.028931,     0.02876,    0.028589,    0.028417,    0.028246,    0.028075,    0.027903,
           0.027732,    0.027561,    0.027389,    0.027218,    0.027046,    0.026875,    0.026703,    0.026532,     0.02636,    0.026188,    0.026017,    0.025845,    0.025673,    0.025502,     0.02533,    0.025158,    0.024986,    0.024814,    0.024642,    0.024471,    0.024299,    0.024127,    0.023955,
           0.023783,     0.02361,    0.023438,    0.023266,    0.023094,    0.022922,     0.02275,    0.022577,    0.022405,    0.022233,     0.02206,    0.021888,    0.021716,    0.021543,    0.021371,    0.021198,    0.021026,    0.020853,    0.020681,    0.020508,    0.020335,    0.020163,     0.01999,
           0.019817,     0.01948,    0.018835,    0.018189,    0.017542,    0.016896,    0.016249,    0.015601,    0.014953,    0.014305,    0.013656,    0.013006,    0.012357,    0.011707,    0.011056,    0.010405,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0]]), 'Confidence', 'F1'], [array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[  0.0083957,   0.0084073,     0.01219,    0.016426,    0.019513,     0.02333,    0.026357,    0.030385,    0.034709,    0.038141,    0.042061,    0.044549,    0.046782,    0.049218,    0.051963,    0.055974,    0.059247,    0.062226,    0.065783,    0.067627,    0.072798,    0.075479,    0.077023,
           0.080182,     0.08146,    0.086068,    0.091148,    0.093684,    0.099425,     0.10727,     0.11227,     0.11669,     0.12049,     0.12288,     0.12659,     0.12563,     0.13445,     0.13681,     0.14256,     0.14766,      0.1592,      0.1601,     0.16459,     0.17269,     0.18378,     0.19378,
            0.19758,      0.2012,     0.21752,     0.21211,     0.21136,     0.22295,     0.23877,     0.24888,     0.24927,     0.24839,     0.25273,     0.26371,     0.25236,     0.26285,     0.25751,     0.26181,     0.26339,     0.26331,     0.25833,     0.27322,      0.2719,     0.27463,     0.26987,
            0.27772,     0.26937,     0.27377,     0.27834,     0.28008,     0.27009,     0.25203,      0.2581,      0.2627,     0.25324,     0.25464,     0.23327,     0.20752,      0.2117,     0.21121,     0.20312,     0.19503,     0.18694,     0.19265,     0.19466,     0.19666,     0.19866,     0.20038,
            0.20152,     0.20266,     0.20379,     0.20493,     0.20607,     0.20721,     0.20843,     0.21489,     0.22641,     0.22984,     0.23257,      0.2353,     0.23804,     0.24871,     0.25452,     0.25966,     0.26563,     0.27337,     0.28663,     0.28692,     0.27561,     0.26431,       0.253,
            0.25515,     0.26216,     0.26817,     0.27239,     0.27661,     0.28084,     0.28506,     0.29206,     0.29956,     0.30707,     0.31184,     0.31636,     0.32089,     0.32541,     0.32993,     0.33397,     0.33653,     0.33909,     0.34165,     0.34421,     0.34678,     0.34934,      0.3519,
            0.35446,     0.35702,     0.35958,     0.36215,     0.40952,      0.4323,     0.44587,     0.44893,     0.45199,     0.45504,      0.4581,     0.46116,     0.46422,     0.46727,     0.47033,     0.47339,     0.47645,      0.4795,     0.48256,     0.48562,     0.48868,     0.49173,     0.49479,
            0.49785,     0.51931,     0.57035,     0.56493,      0.5595,     0.55408,     0.54866,     0.54323,     0.53781,     0.53238,     0.52696,     0.52154,     0.51611,     0.51069,     0.50527,     0.50024,     0.50844,     0.51664,     0.52484,     0.53304,     0.54124,     0.54944,     0.55764,
            0.56584,     0.57404,     0.58224,     0.59044,     0.59864,     0.62331,     0.65127,     0.67922,     0.70718,     0.73513,     0.78199,     0.85033,     0.91866,       0.987,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1]]), 'Confidence', 'Precision'], [array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[    0.73134,     0.73134,     0.71144,     0.66169,     0.58209,     0.55224,     0.51244,     0.49254,     0.47761,     0.46269,     0.44279,     0.41523,     0.38308,     0.36318,     0.34328,     0.33333,     0.32338,     0.31343,     0.29851,     0.28358,     0.28358,     0.27363,     0.25871,
            0.25373,     0.24378,     0.24378,     0.24378,     0.23383,     0.23383,     0.23383,     0.23383,     0.22886,     0.21891,     0.20896,     0.20398,     0.18905,     0.18408,     0.17505,     0.17413,     0.16915,     0.16915,     0.15423,     0.14925,     0.14428,     0.14428,     0.14428,
            0.13433,     0.12935,     0.12863,      0.1192,     0.11068,     0.10448,     0.10448,     0.10448,    0.099502,    0.094527,    0.094527,    0.094527,     0.08734,    0.084577,    0.079602,    0.079602,    0.076515,    0.074627,    0.069652,    0.069652,    0.065033,    0.064677,    0.059701,
           0.059311,    0.054726,    0.054726,    0.054726,    0.054208,    0.051576,    0.046971,    0.044776,    0.044776,    0.039801,    0.039112,    0.034814,    0.029851,    0.029851,    0.029325,    0.027942,    0.026559,    0.025176,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,
           0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024876,    0.024064,    0.022789,    0.021514,    0.020239,
             0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,
             0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,      0.0199,
             0.0199,      0.0199,    0.019825,    0.019448,     0.01907,    0.018692,    0.018314,    0.017937,    0.017559,    0.017181,    0.016803,    0.016426,    0.016048,     0.01567,    0.015292,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,
           0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014925,    0.014854,    0.014766,    0.014678,     0.01459,    0.014502,    0.014413,    0.014325,    0.014237,    0.014149,
           0.014061,    0.013973,    0.013885,    0.013797,    0.013709,     0.01362,    0.013532,    0.013444,    0.013356,    0.013268,     0.01318,    0.013092,    0.013004,    0.012916,    0.012827,    0.012739,    0.012651,    0.012563,    0.012475,    0.012387,    0.012299,    0.012211,    0.012122,
           0.012034,    0.011946,    0.011858,     0.01177,    0.011682,    0.011594,    0.011506,    0.011418,    0.011329,    0.011241,    0.011153,    0.011065,    0.010977,    0.010889,    0.010801,    0.010713,    0.010625,    0.010536,    0.010448,     0.01036,    0.010272,    0.010184,    0.010096,
           0.010008,   0.0098359,   0.0095069,   0.0091779,   0.0088488,   0.0085198,   0.0081908,   0.0078618,   0.0075328,   0.0072038,   0.0068748,   0.0065458,   0.0062168,   0.0058878,   0.0055588,   0.0052298,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0]]), 'Confidence', 'Recall']]
fitness: 0.034362663494913695
keys: ['metrics/precision(B)', 'metrics/recall(B)', 'metrics/mAP50(B)', 'metrics/mAP50-95(B)']
maps: array([   0.029221])
names: {0: 'Pothole'}
plot: True
results_dict: {'metrics/precision(B)': 0.2527298867494946, 'metrics/recall(B)': 0.0945273631840796, 'metrics/mAP50(B)': 0.0806418197031242, 'metrics/mAP50-95(B)': 0.029220535027334748, 'fitness': 0.034362663494913695}
save_dir: PosixPath('runs/detect/train2')
speed: {'preprocess': 4.359686374664307, 'inference': 6.075906753540039, 'loss': 0.0010371208190917969, 'postprocess': 0.21613438924153644}
task: 'detect'
In [13]:
#predict
model_u_trained=YOLO('runs/detect/train2/weights/best.pt')
results = model_u_trained("img1.jpg")
results[0].show()
image 1/1 /mnt/d/workspace/Pothole/img1.jpg: 640x640 (no detections), 29.0ms
Speed: 2.1ms preprocess, 29.0ms inference, 0.5ms postprocess per image at shape (1, 3, 640, 640)
No description has been provided for this image

v10n_u_trained_10_predict¶

In [20]:
# predicting all stored in v10x_trained_10_predict
!yolo task= detect mode=predict conf=0.4 save=True model=runs/detect/v10n_u_trained_10_train/weights/best.pt source=dataset/valid/images
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
^C
Traceback (most recent call last):
  File "/home/irshad/.local/bin/yolo", line 8, in <module>
    sys.exit(entrypoint())
  File "/home/irshad/.local/lib/python3.10/site-packages/ultralytics/cfg/__init__.py", line 830, in entrypoint
    getattr(model, mode)(**overrides)  # default args from model
  File "/home/irshad/.local/lib/python3.10/site-packages/ultralytics/engine/model.py", line 560, in predict
    self.predictor.setup_model(model=self.model, verbose=is_cli)
  File "/home/irshad/.local/lib/python3.10/site-packages/ultralytics/engine/predictor.py", line 303, in setup_model
    self.model = AutoBackend(
  File "/home/irshad/.local/lib/python3.10/site-packages/torch/utils/_contextlib.py", line 115, in decorate_context
    return func(*args, **kwargs)
  File "/home/irshad/.local/lib/python3.10/site-packages/ultralytics/nn/autobackend.py", line 144, in __init__
    model = model.fuse(verbose=verbose)
  File "/home/irshad/.local/lib/python3.10/site-packages/ultralytics/nn/tasks.py", line 203, in fuse
    m.conv = fuse_conv_and_bn(m.conv, m.bn)  # update conv
  File "/home/irshad/.local/lib/python3.10/site-packages/ultralytics/utils/torch_utils.py", line 252, in fuse_conv_and_bn
    fusedconv.weight.copy_(torch.mm(w_bn, w_conv).view(fusedconv.weight.shape))
KeyboardInterrupt
In [12]:
#predicting using cpu 
# results deleated
!yolo task= detect mode=predict conf=0.4 save=True model=runs/detect/v10n_u_trained_10_train/weights/best.pt source=dataset/valid/images device=cpu
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CPU (13th Gen Intel Core(TM) i5-13500HX)
YOLOv10n summary (fused): 285 layers, 2,694,806 parameters, 0 gradients, 8.2 GFLOPs

image 1/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-114-_jpg.rf.a0f30e06b3b96d7879d5f55a7012433c.jpg: 640x640 (no detections), 75.5ms
image 2/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-116-_jpg.rf.ddcb9d0e0bcf2a1a5096c4f04e6b7f9e.jpg: 640x640 (no detections), 56.8ms
image 3/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-123-_jpg.rf.385ae3fbcdabda81f72ddf11f6a4b93d.jpg: 640x640 (no detections), 53.4ms
image 4/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-125-_jpg.rf.3d316e9144cb7438021e01065de91057.jpg: 640x640 (no detections), 54.7ms
image 5/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-129-_jpg.rf.d307956eee8ac32fbe793335e87c7b67.jpg: 640x640 (no detections), 56.9ms
image 6/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-140-_jpg.rf.430bfe74decf2b904377d127914f2092.jpg: 640x640 (no detections), 47.9ms
image 7/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-144-_jpg.rf.61a3b886f058ed3a4788426cfa7c4988.jpg: 640x640 (no detections), 52.6ms
image 8/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-151-_jpg.rf.45a82558c583efe9dda4ea02e294595a.jpg: 640x640 (no detections), 57.5ms
image 9/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-152-_jpg.rf.510fb0040c8523bb66ec10b0fe67b4b4.jpg: 640x640 (no detections), 63.3ms
image 10/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-154-_jpg.rf.a9e6b534da24b1c1815902210ab23be9.jpg: 640x640 (no detections), 51.5ms
image 11/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-157-_jpg.rf.2247b000d655232fbf8a58b5add102ca.jpg: 640x640 (no detections), 53.9ms
image 12/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-161-_jpg.rf.1cff77d21f54b7ed9234e896abcf0f5b.jpg: 640x640 (no detections), 77.3ms
image 13/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-165-_jpg.rf.82b3db37518b15aa73be6e4093deaf46.jpg: 640x640 (no detections), 58.0ms
image 14/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-17-_jpg.rf.0d172b6accedf4c52a3868d9b690d48b.jpg: 640x640 (no detections), 74.9ms
image 15/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-173-_jpg.rf.73512294c1b7b5c500eac27a0fb669f7.jpg: 640x640 (no detections), 57.0ms
image 16/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-175-_jpg.rf.9fc746d4865c11f38047cf383baa30a6.jpg: 640x640 (no detections), 50.8ms
image 17/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-178-_jpg.rf.2e27d006aec1544f1eec88d9170fd6ce.jpg: 640x640 (no detections), 49.4ms
image 18/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-183-_jpg.rf.277cfed19f046acc63dc9640b239f1df.jpg: 640x640 (no detections), 49.5ms
image 19/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-184-_jpg.rf.cb753b5f714073fc4a8c2de602386399.jpg: 640x640 (no detections), 52.6ms
image 20/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-192-_jpg.rf.e0b55409488785e7156677026d372c23.jpg: 640x640 (no detections), 50.8ms
image 21/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-193-_jpg.rf.4520ff34079afc8e9f9b50a633c08876.jpg: 640x640 (no detections), 59.0ms
image 22/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-20-_jpg.rf.4b34591f154f226347c9ca9dfb33b2e4.jpg: 640x640 (no detections), 50.9ms
image 23/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-202-_jpg.rf.8c64ec46a9e120007c12c2e4841c9555.jpg: 640x640 (no detections), 44.2ms
image 24/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-204-_jpg.rf.c3990b25e295bfd6b4605c6305cce37c.jpg: 640x640 (no detections), 52.9ms
image 25/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-205-_jpg.rf.cf4be807bced55552b98c208585d2c56.jpg: 640x640 (no detections), 70.0ms
image 26/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-209-_jpg.rf.533a84bcc43e29e16c0f80069ee7f8df.jpg: 640x640 (no detections), 59.1ms
image 27/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-22-_jpg.rf.aec225ee7ab2b5f7791d6579b213600b.jpg: 640x640 (no detections), 47.8ms
image 28/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-225-_jpg.rf.38cc0deddb897c98814f644451130bb7.jpg: 640x640 (no detections), 54.2ms
image 29/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-228-_jpg.rf.4dcc6aa7dfc0c9a59a7f033e2ed12413.jpg: 640x640 (no detections), 54.4ms
image 30/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-230-_jpg.rf.ffe557c4b95e23f1a4323cf7768060f2.jpg: 640x640 (no detections), 44.4ms
image 31/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-236-_jpg.rf.34f38065b7233d8b9c03b746ffc9a780.jpg: 640x640 (no detections), 57.0ms
image 32/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-254-_jpg.rf.2b5c3b2efce3960f4f29319ebaa1d220.jpg: 640x640 (no detections), 53.3ms
image 33/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-257-_jpg.rf.09cb9983a70f1bd7ba096c252b64f909.jpg: 640x640 (no detections), 65.7ms
image 34/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-262-_jpg.rf.02970860794f859699c9f743bc0fd7d1.jpg: 640x640 (no detections), 58.6ms
image 35/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-263-_jpg.rf.47073e3fbc426b15c3caa7e8daa66719.jpg: 640x640 (no detections), 48.2ms
image 36/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-269-_jpg.rf.196b54c0db633b6b02612f69072abb99.jpg: 640x640 (no detections), 55.4ms
image 37/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-27-_jpg.rf.b4cd8eb26d6941eabfc17280f03bca69.jpg: 640x640 (no detections), 47.9ms
image 38/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-270-_jpg.rf.2a0793533346a7355bbeb34291b4a067.jpg: 640x640 (no detections), 55.6ms
image 39/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-271-_jpg.rf.0210435cf32159dca447e61250afb67f.jpg: 640x640 (no detections), 55.3ms
image 40/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-273-_jpg.rf.36d10c68fb23799bd0a58e48e0b995ce.jpg: 640x640 (no detections), 55.2ms
image 41/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-28-_jpg.rf.fe8316c392940899d9211be3305c9ab6.jpg: 640x640 (no detections), 60.0ms
image 42/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-288-_jpg.rf.26f8da57a5a023907e5e061dbd0a5632.jpg: 640x640 (no detections), 45.1ms
image 43/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-290-_jpg.rf.bcf58ab867c40a607759aec5666fece4.jpg: 640x640 (no detections), 53.5ms
image 44/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-292-_jpg.rf.f3d0a40ac5190529f4dd4886d6f5e5d0.jpg: 640x640 (no detections), 42.8ms
image 45/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-303-_jpg.rf.236ed95889a91baf47b304faa7cbae01.jpg: 640x640 (no detections), 56.3ms
image 46/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-308-_jpg.rf.8f5b6dc0b616365d05bce17bf30eff39.jpg: 640x640 (no detections), 56.6ms
image 47/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-33-_jpg.rf.143c56d136e3245555b26b4d5108a4e1.jpg: 640x640 (no detections), 54.0ms
image 48/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-36-_jpg.rf.13a668c4003681c4631508465eef5a9f.jpg: 640x640 (no detections), 47.6ms
image 49/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-42-_jpg.rf.28b626ac5e887c92feeed1a3c5e85b64.jpg: 640x640 (no detections), 53.8ms
image 50/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-45-_jpg.rf.8e102a986584d47797dc92558c2af624.jpg: 640x640 (no detections), 59.0ms
image 51/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-50-_jpg.rf.cb41506e84f6cac629bd55e40e329834.jpg: 640x640 (no detections), 61.9ms
image 52/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-58-_jpg.rf.8f585bdabd7d6e5b0285121867659f37.jpg: 640x640 (no detections), 58.7ms
image 53/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-60-_jpg.rf.4e715308cc8dc7455b767414cda028ab.jpg: 640x640 (no detections), 49.7ms
image 54/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-61-_jpg.rf.72ad391fcf2334c24de5ed48dda25001.jpg: 640x640 (no detections), 67.4ms
image 55/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-67-_jpg.rf.663b4f930bb764609355101fbce07ab1.jpg: 640x640 (no detections), 60.6ms
image 56/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-69-_jpg.rf.0fcb6cd22beb140d931a387036b7eab6.jpg: 640x640 (no detections), 57.7ms
image 57/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-72-_jpg.rf.82c8314917ff5284106bd3428cff5792.jpg: 640x640 (no detections), 63.1ms
image 58/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-88-_jpg.rf.1cb5c1768861244cf01d2c5691bb3e08.jpg: 640x640 (no detections), 47.8ms
image 59/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-95-_jpg.rf.eca25439e9e1dd31f29df105f4faa122.jpg: 640x640 (no detections), 53.7ms
image 60/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-99-_jpg.rf.28d287fa96c09a12f2511e1b4df7e5a1.jpg: 640x640 (no detections), 50.7ms
Speed: 1.3ms preprocess, 55.6ms inference, 0.2ms postprocess per image at shape (1, 3, 640, 640)
Results saved to runs/detect/predict2
💡 Learn more at https://docs.ultralytics.com/modes/predict

v10_u_trained_500_train¶

In [17]:
#retraining to 500
#Stored in v10_u_trained_500_train
#console output stopped in mid and excel stopped in 312  
YOLO("runs/detect/v10n_u_trained_10_train/weights/best.pt").train(data="dataset/data.yaml", batch=8, epochs=500, imgsz=640)
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
engine/trainer: task=detect, mode=train, model=runs/detect/v10n_u_trained_10_train/weights/best.pt, data=dataset/data.yaml, epochs=500, time=None, patience=100, batch=8, imgsz=640, save=True, save_period=-1, cache=False, device=None, workers=8, project=None, name=train, exist_ok=False, pretrained=True, optimizer=auto, verbose=True, seed=0, deterministic=True, single_cls=False, rect=False, cos_lr=False, close_mosaic=10, resume=False, amp=True, fraction=1.0, profile=False, freeze=None, multi_scale=False, overlap_mask=True, mask_ratio=4, dropout=0.0, val=True, split=val, save_json=False, save_hybrid=False, conf=None, iou=0.7, max_det=300, half=False, dnn=False, plots=True, source=None, vid_stride=1, stream_buffer=False, visualize=False, augment=False, agnostic_nms=False, classes=None, retina_masks=False, embed=None, show=False, save_frames=False, save_txt=False, save_conf=False, save_crop=False, show_labels=True, show_conf=True, show_boxes=True, line_width=None, format=torchscript, keras=False, optimize=False, int8=False, dynamic=False, simplify=False, opset=None, workspace=4, nms=False, lr0=0.01, lrf=0.01, momentum=0.937, weight_decay=0.0005, warmup_epochs=3.0, warmup_momentum=0.8, warmup_bias_lr=0.1, box=7.5, cls=0.5, dfl=1.5, pose=12.0, kobj=1.0, label_smoothing=0.0, nbs=64, hsv_h=0.015, hsv_s=0.7, hsv_v=0.4, degrees=0.0, translate=0.1, scale=0.5, shear=0.0, perspective=0.0, flipud=0.0, fliplr=0.5, bgr=0.0, mosaic=1.0, mixup=0.0, copy_paste=0.0, auto_augment=randaugment, erasing=0.4, crop_fraction=1.0, cfg=None, tracker=botsort.yaml, save_dir=runs/detect/train

                   from  n    params  module                                       arguments                     
  0                  -1  1       464  ultralytics.nn.modules.conv.Conv             [3, 16, 3, 2]                 
  1                  -1  1      4672  ultralytics.nn.modules.conv.Conv             [16, 32, 3, 2]                
  2                  -1  1      7360  ultralytics.nn.modules.block.C2f             [32, 32, 1, True]             
  3                  -1  1     18560  ultralytics.nn.modules.conv.Conv             [32, 64, 3, 2]                
  4                  -1  2     49664  ultralytics.nn.modules.block.C2f             [64, 64, 2, True]             
  5                  -1  1      9856  ultralytics.nn.modules.block.SCDown          [64, 128, 3, 2]               
  6                  -1  2    197632  ultralytics.nn.modules.block.C2f             [128, 128, 2, True]           
  7                  -1  1     36096  ultralytics.nn.modules.block.SCDown          [128, 256, 3, 2]              
  8                  -1  1    460288  ultralytics.nn.modules.block.C2f             [256, 256, 1, True]           
  9                  -1  1    164608  ultralytics.nn.modules.block.SPPF            [256, 256, 5]                 
 10                  -1  1    249728  ultralytics.nn.modules.block.PSA             [256, 256]                    
 11                  -1  1         0  torch.nn.modules.upsampling.Upsample         [None, 2, 'nearest']          
 12             [-1, 6]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 13                  -1  1    148224  ultralytics.nn.modules.block.C2f             [384, 128, 1]                 
 14                  -1  1         0  torch.nn.modules.upsampling.Upsample         [None, 2, 'nearest']          
 15             [-1, 4]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 16                  -1  1     37248  ultralytics.nn.modules.block.C2f             [192, 64, 1]                  
 17                  -1  1     36992  ultralytics.nn.modules.conv.Conv             [64, 64, 3, 2]                
 18            [-1, 13]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 19                  -1  1    123648  ultralytics.nn.modules.block.C2f             [192, 128, 1]                 
 20                  -1  1     18048  ultralytics.nn.modules.block.SCDown          [128, 128, 3, 2]              
 21            [-1, 10]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 22                  -1  1    282624  ultralytics.nn.modules.block.C2fCIB          [384, 256, 1, True, True]     
 23        [16, 19, 22]  1    861718  ultralytics.nn.modules.head.v10Detect        [1, [64, 128, 256]]           
YOLOv10n summary: 385 layers, 2,707,430 parameters, 2,707,414 gradients, 8.4 GFLOPs

Transferred 595/595 items from pretrained weights
Freezing layer 'model.23.dfl.conv.weight'
AMP: running Automatic Mixed Precision (AMP) checks with YOLOv8n...
AMP: checks passed ✅
train: Scanning /mnt/d/workspace/cv/dl/66e31d6ee96cd_student_resource_3/student_resource 3/datasets/dataset/train/labels.cache... 720 images, 0 backgr
val: Scanning /mnt/d/workspace/cv/dl/66e31d6ee96cd_student_resource_3/student_resource 3/datasets/dataset/valid/labels.cache... 60 images, 0 backgroun
Plotting labels to runs/detect/train/labels.jpg... 
optimizer: 'optimizer=auto' found, ignoring 'lr0=0.01' and 'momentum=0.937' and determining best 'optimizer', 'lr0' and 'momentum' automatically... 
optimizer: AdamW(lr=0.002, momentum=0.9) with parameter groups 95 weight(decay=0.0), 108 weight(decay=0.0005), 107 bias(decay=0.0)
Image sizes 640 train, 640 val
Using 8 dataloader workers
Logging results to runs/detect/train
Starting training for 500 epochs...

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      1/500      1.62G      4.897       6.72      5.576         21        640: 100%|██████████| 90/90 [00:15<00:00,  5.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.74it/s]
                   all         60        201      0.242     0.0697     0.0769     0.0265

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      2/500      1.62G      4.775       6.42      5.456         66        640: 100%|██████████| 90/90 [00:13<00:00,  6.46it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.04it/s]
                   all         60        201      0.115      0.114     0.0507     0.0179

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      3/500      1.62G      4.723      6.174      5.295         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.70it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.44it/s]
                   all         60        201      0.145     0.0945     0.0726     0.0276

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      4/500      1.63G      4.597      6.151       5.26         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.04it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.64it/s]
                   all         60        201      0.165      0.179     0.0903     0.0339

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      5/500      1.62G      4.467      5.773      5.012         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.49it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.28it/s]
                   all         60        201      0.284      0.194       0.13     0.0475

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      6/500      1.62G      4.387      5.651      4.887         48        640: 100%|██████████| 90/90 [00:12<00:00,  7.01it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.99it/s]
                   all         60        201        0.2      0.209      0.123     0.0445

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      7/500      1.62G      4.195      5.556      4.764         23        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  5.35it/s]
                   all         60        201      0.169      0.234      0.134     0.0577

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      8/500      1.62G      4.058      5.269      4.597         52        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.35it/s]
                   all         60        201      0.246      0.259      0.155     0.0683

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      9/500      1.62G      3.958      4.964      4.404         41        640: 100%|██████████| 90/90 [00:13<00:00,  6.57it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.02it/s]
                   all         60        201      0.319      0.284      0.209     0.0811

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     10/500      1.62G      3.951      4.948       4.38         45        640: 100%|██████████| 90/90 [00:12<00:00,  6.99it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.35it/s]
                   all         60        201      0.272      0.358      0.207     0.0937

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     11/500      1.62G      3.798      4.761      4.303         47        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.60it/s]
                   all         60        201      0.286      0.295      0.213     0.0943

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     12/500      1.63G      3.711      4.604      4.227         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.11it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.25it/s]
                   all         60        201      0.355      0.343      0.271      0.128

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     13/500      1.62G      3.717      4.566      4.152         20        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.29it/s]
                   all         60        201      0.368      0.358      0.309      0.142

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     14/500      1.62G      3.651      4.471      4.064         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.09it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.369      0.343      0.271       0.13

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     15/500      1.62G      3.644      4.345      4.089         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.50it/s]
                   all         60        201      0.371      0.393      0.326      0.151

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     16/500      1.62G      3.558      4.174       3.94         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.51it/s]
                   all         60        201      0.417      0.363      0.321       0.17

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     17/500      1.62G      3.558      4.216      3.924         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.17it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.91it/s]
                   all         60        201      0.364      0.348      0.286      0.141

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     18/500      1.63G      3.482       4.27      3.955         46        640: 100%|██████████| 90/90 [00:12<00:00,  7.11it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.51it/s]
                   all         60        201      0.376      0.403      0.335      0.165

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     19/500      1.62G      3.455      4.018      3.821         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.513      0.414      0.431      0.203

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     20/500      1.62G      3.416      3.975      3.819         22        640: 100%|██████████| 90/90 [00:12<00:00,  7.04it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.09it/s]
                   all         60        201       0.51      0.383      0.405      0.198

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     21/500      1.62G      3.425       3.93      3.788         18        640: 100%|██████████| 90/90 [00:12<00:00,  7.15it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.83it/s]
                   all         60        201      0.463      0.416      0.417       0.21

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     22/500      1.62G      3.336      3.732      3.731         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.36it/s]
                   all         60        201       0.46      0.428      0.407      0.208

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     23/500      1.62G      3.322      3.689       3.68         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.15it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.50it/s]
                   all         60        201      0.449      0.473       0.41      0.192

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     24/500      1.62G      3.273      3.736      3.697         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.34it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.596      0.313      0.412      0.205

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     25/500      1.62G      3.236      3.711      3.624         64        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.87it/s]
                   all         60        201      0.513      0.418      0.421      0.215

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     26/500      1.62G       3.24      3.601       3.61         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.28it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.62it/s]
                   all         60        201      0.459      0.388      0.363      0.178

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     27/500      1.62G      3.242      3.613      3.624         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.90it/s]
                   all         60        201      0.438      0.478      0.438      0.227

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     28/500      1.62G      3.205      3.494      3.577         66        640: 100%|██████████| 90/90 [00:12<00:00,  7.32it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.95it/s]
                   all         60        201       0.54      0.443      0.445      0.234

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     29/500      1.62G      3.183      3.428      3.583         29        640: 100%|██████████| 90/90 [00:12<00:00,  7.28it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.04it/s]
                   all         60        201      0.517      0.517      0.444      0.226

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     30/500      1.62G      3.163      3.493       3.56         29        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.81it/s]
                   all         60        201      0.533      0.388      0.435      0.232

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     31/500      1.62G      3.194      3.437      3.584         29        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.84it/s]
                   all         60        201      0.473      0.429      0.409      0.209

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     32/500      1.63G      3.127      3.368       3.51         24        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.56it/s]
                   all         60        201      0.475      0.498      0.453      0.225

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     33/500      1.62G      3.025      3.282      3.449         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.15it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.34it/s]
                   all         60        201      0.519      0.448      0.433      0.222

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     34/500      1.63G      3.109      3.474       3.55         42        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.86it/s]
                   all         60        201      0.525      0.493      0.477      0.243

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     35/500      1.62G      2.987      3.172      3.399         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.18it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.79it/s]
                   all         60        201      0.583      0.468      0.484      0.251

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     36/500      1.62G      3.023      3.273      3.417         39        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.62it/s]
                   all         60        201      0.479      0.532      0.481       0.25

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     37/500      1.63G      3.025      3.205      3.432         41        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201      0.482      0.502      0.482       0.25

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     38/500      1.62G      2.996       3.11      3.375         59        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.77it/s]
                   all         60        201      0.579      0.463      0.479      0.254

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     39/500      1.62G      3.052      3.207      3.479         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.26it/s]
                   all         60        201       0.54      0.483      0.489      0.257

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     40/500      1.62G      2.999      3.161      3.397         29        640: 100%|██████████| 90/90 [00:12<00:00,  7.19it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.38it/s]
                   all         60        201      0.506      0.449      0.444      0.232

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     41/500      1.62G      3.026      3.111      3.402         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.50it/s]
                   all         60        201       0.62      0.458      0.486      0.251

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     42/500      1.63G      2.996      3.114      3.356         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.14it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.71it/s]
                   all         60        201      0.497      0.506      0.497      0.256

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     43/500      1.62G      2.926      3.019      3.283         24        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.79it/s]
                   all         60        201      0.575      0.443      0.472      0.251

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     44/500      1.62G      2.971      3.055       3.38         23        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.25it/s]
                   all         60        201      0.542       0.46      0.456      0.254

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     45/500      1.62G      2.953      3.068       3.33         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.22it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.81it/s]
                   all         60        201      0.541      0.562      0.541      0.302

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     46/500      1.62G      2.922      3.025      3.321         49        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.60it/s]
                   all         60        201      0.591      0.493      0.543      0.295

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     47/500      1.63G      2.907      2.858      3.286         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.82it/s]
                   all         60        201      0.513      0.527      0.506      0.267

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     48/500      1.62G      2.952      2.943      3.315         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.35it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.83it/s]
                   all         60        201      0.606      0.502      0.505      0.268

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     49/500      1.62G      2.889      2.849      3.253         24        640: 100%|██████████| 90/90 [00:12<00:00,  7.36it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.93it/s]
                   all         60        201      0.544      0.458      0.459      0.241

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     50/500      1.63G      2.838      2.811       3.27         25        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.64it/s]
                   all         60        201      0.506      0.562      0.502       0.27

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     51/500      1.63G      2.875      2.924       3.27         24        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.67it/s]
                   all         60        201      0.478      0.502      0.472      0.249

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     52/500      1.62G      2.815       2.81      3.235         30        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.23it/s]
                   all         60        201      0.587      0.458      0.503      0.281

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     53/500      1.63G      2.899      2.777      3.241         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.19it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.56it/s]
                   all         60        201      0.523      0.527      0.498      0.273

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     54/500      1.62G      2.812      2.782      3.222         35        640: 100%|██████████| 90/90 [00:12<00:00,  7.04it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.49it/s]
                   all         60        201      0.575      0.505      0.514       0.27

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     55/500      1.62G      2.825      2.767      3.236         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.27it/s]
                   all         60        201      0.538      0.483      0.498      0.281

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     56/500      1.63G      2.778       2.67      3.163         44        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201      0.526      0.577       0.52      0.272

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     57/500      1.63G      2.858      2.743      3.185         39        640: 100%|██████████| 90/90 [00:12<00:00,  7.34it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.64it/s]
                   all         60        201      0.565      0.511      0.537        0.3

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     58/500      1.62G      2.757      2.638      3.186         20        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.04it/s]
                   all         60        201        0.6      0.498      0.527      0.293

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     59/500      1.63G      2.769      2.591      3.156         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.05it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.25it/s]
                   all         60        201      0.548      0.531      0.529      0.261

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     60/500      1.63G       2.78      2.671      3.155         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.04it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.17it/s]
                   all         60        201      0.529      0.497      0.509      0.284

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     61/500      1.63G      2.699      2.546      3.131         44        640: 100%|██████████| 90/90 [00:12<00:00,  7.06it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.57it/s]
                   all         60        201      0.608      0.532      0.535      0.286

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     62/500      1.62G      2.748      2.608      3.157         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.75it/s]
                   all         60        201      0.542      0.527      0.524      0.277

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     63/500      1.62G      2.786      2.582      3.159         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.04it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.47it/s]
                   all         60        201      0.584      0.483      0.524      0.307

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     64/500      1.63G      2.692      2.601      3.163         23        640: 100%|██████████| 90/90 [00:12<00:00,  6.95it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.67it/s]
                   all         60        201      0.542      0.582      0.553      0.301

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     65/500      1.62G       2.73      2.558      3.136         30        640: 100%|██████████| 90/90 [00:12<00:00,  7.18it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.15it/s]
                   all         60        201      0.594      0.557      0.554      0.285

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     66/500      1.62G      2.717       2.53      3.117         20        640: 100%|██████████| 90/90 [00:12<00:00,  7.19it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.46it/s]
                   all         60        201      0.596      0.532      0.535      0.305

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     67/500      1.63G      2.648      2.462      3.067         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.58it/s]
                   all         60        201      0.596      0.522      0.538      0.288

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     68/500      1.63G      2.729      2.488       3.12         42        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.46it/s]
                   all         60        201      0.541      0.528      0.516      0.283

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     69/500      1.62G      2.637      2.525      3.104         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.26it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.48it/s]
                   all         60        201      0.567      0.552      0.536      0.304

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     70/500      1.62G      2.714      2.539      3.121         38        640: 100%|██████████| 90/90 [00:12<00:00,  7.22it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.07it/s]
                   all         60        201      0.547      0.529      0.519       0.27

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     71/500      1.62G      2.676      2.527      3.124         23        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.66it/s]
                   all         60        201      0.572      0.559       0.55      0.311

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     72/500      1.63G      2.637      2.428      3.049         48        640: 100%|██████████| 90/90 [00:12<00:00,  7.17it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.86it/s]
                   all         60        201      0.552      0.553      0.513      0.288

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     73/500      1.63G      2.597      2.362      3.105         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.83it/s]
                   all         60        201      0.565      0.557      0.547      0.299

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     74/500      1.62G      2.657      2.519        3.1         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.22it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.78it/s]
                   all         60        201      0.566      0.542      0.548      0.297

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     75/500      1.62G      2.668       2.41      3.054         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.34it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.18it/s]
                   all         60        201      0.549      0.577      0.557      0.311

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     76/500      1.62G      2.662      2.356      3.028         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.17it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.09it/s]
                   all         60        201      0.595      0.532      0.538      0.292

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     77/500      1.63G      2.573      2.305      3.024         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.50it/s]
                   all         60        201      0.597      0.577      0.569      0.329

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     78/500      1.62G      2.594      2.296      3.028         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.26it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.43it/s]
                   all         60        201      0.628      0.537      0.557        0.3

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     79/500      1.62G      2.613       2.41       3.05         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.03it/s]
                   all         60        201      0.578      0.531      0.523      0.281

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     80/500      1.63G      2.565      2.364      3.031         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.70it/s]
                   all         60        201      0.548      0.517      0.526      0.302

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     81/500      1.62G       2.54      2.347      3.005         54        640: 100%|██████████| 90/90 [00:12<00:00,  7.26it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.74it/s]
                   all         60        201      0.532      0.548      0.517       0.28

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     82/500      1.62G      2.547      2.288      2.995         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.82it/s]
                   all         60        201       0.64      0.488      0.555      0.296

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     83/500      1.62G      2.579      2.272      2.983         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.74it/s]
                   all         60        201      0.555      0.627      0.555      0.302

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     84/500      1.62G      2.597      2.413      3.056         24        640: 100%|██████████| 90/90 [00:12<00:00,  7.29it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.75it/s]
                   all         60        201      0.536      0.567      0.533      0.293

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     85/500      1.63G      2.579      2.278      2.963         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.38it/s]
                   all         60        201      0.611      0.527      0.539      0.295

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     86/500      1.62G      2.544      2.243      2.957         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.606      0.551      0.561      0.311

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     87/500      1.62G      2.547      2.265      2.929         17        640: 100%|██████████| 90/90 [00:12<00:00,  7.19it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.70it/s]
                   all         60        201      0.588       0.56      0.558      0.301

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     88/500      1.62G      2.524      2.286      2.977         35        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.66it/s]
                   all         60        201      0.563      0.522      0.525      0.269

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     89/500      1.63G      2.531       2.27      2.985         25        640: 100%|██████████| 90/90 [00:12<00:00,  7.32it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.49it/s]
                   all         60        201      0.593      0.527      0.537      0.296

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     90/500      1.63G      2.493       2.22      2.946         28        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.51it/s]
                   all         60        201      0.579      0.479      0.503      0.266

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     91/500      1.62G      2.541      2.244      2.981         35        640: 100%|██████████| 90/90 [00:12<00:00,  7.18it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.53it/s]
                   all         60        201      0.581      0.577      0.541      0.291

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     92/500      1.63G      2.491      2.207      2.959         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.69it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.35it/s]
                   all         60        201      0.545      0.596      0.568      0.307

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     93/500      1.62G      2.498      2.212       2.93         51        640: 100%|██████████| 90/90 [00:12<00:00,  7.10it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.43it/s]
                   all         60        201      0.587      0.572      0.578      0.322

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     94/500      1.62G      2.452       2.17      2.912         41        640: 100%|██████████| 90/90 [00:12<00:00,  7.29it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.58it/s]
                   all         60        201      0.601      0.597      0.547      0.309

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     95/500      1.63G      2.505      2.168      2.935         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.33it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.92it/s]
                   all         60        201       0.54      0.566      0.533      0.296

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     96/500      1.62G       2.47      2.188      2.901         25        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.99it/s]
                   all         60        201      0.665      0.547       0.57      0.313

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     97/500      1.62G      2.509      2.128      2.898         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.19it/s]
                   all         60        201      0.603      0.567      0.562      0.293

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     98/500      1.63G      2.476       2.15      2.902         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.19it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.79it/s]
                   all         60        201      0.576      0.587      0.579      0.311

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     99/500      1.62G      2.473      2.129      2.918         25        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.90it/s]
                   all         60        201      0.565      0.575      0.546      0.315

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    100/500      1.63G      2.452      2.054      2.871         39        640: 100%|██████████| 90/90 [00:12<00:00,  7.28it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.42it/s]
                   all         60        201       0.59      0.573      0.578      0.307

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    101/500      1.63G      2.471       2.13       2.91         20        640: 100%|██████████| 90/90 [00:12<00:00,  7.18it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.65it/s]
                   all         60        201      0.591      0.587      0.578      0.325

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    102/500      1.63G      2.453      2.115      2.905         19        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.593      0.597      0.549      0.316

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    103/500      1.62G      2.433      2.073      2.893         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.31it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.00it/s]
                   all         60        201      0.576      0.597      0.574      0.307

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    104/500      1.63G       2.46      2.099      2.906         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.28it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.87it/s]
                   all         60        201      0.519      0.607      0.561      0.316

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    105/500      1.62G      2.423      2.118      2.869         16        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.93it/s]
                   all         60        201      0.553      0.557      0.538      0.288

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    106/500      1.62G      2.417      2.006      2.838         38        640: 100%|██████████| 90/90 [00:12<00:00,  7.12it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.26it/s]
                   all         60        201      0.527      0.566       0.53      0.298

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    107/500      1.62G      2.418      2.061      2.845         57        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.74it/s]
                   all         60        201      0.576      0.567      0.566      0.312

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    108/500      1.63G      2.391      2.013      2.826         37        640: 100%|██████████| 90/90 [00:12<00:00,  6.93it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.55it/s]
                   all         60        201      0.644      0.517      0.532      0.298

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    109/500      1.62G      2.343      1.962      2.799         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.27it/s]
                   all         60        201      0.642      0.498       0.55      0.322

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    110/500      1.62G      2.393      2.074       2.85         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.97it/s]
                   all         60        201      0.671      0.522      0.533      0.292

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    111/500      1.63G      2.355      2.123      2.845         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.43it/s]
                   all         60        201      0.617       0.53      0.555      0.314

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    112/500      1.62G      2.385      2.016      2.807         28        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.86it/s]
                   all         60        201      0.589      0.582      0.562      0.311

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    113/500      1.62G      2.367      1.991      2.812         44        640: 100%|██████████| 90/90 [00:12<00:00,  7.07it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.36it/s]
                   all         60        201      0.586      0.532      0.554        0.3

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    114/500      1.63G      2.339      1.969      2.781         51        640: 100%|██████████| 90/90 [00:12<00:00,  7.09it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.23it/s]
                   all         60        201      0.596      0.637      0.601      0.319

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    115/500      1.62G      2.422      2.008      2.811         25        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.47it/s]
                   all         60        201      0.627      0.522      0.562      0.324

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    116/500      1.63G      2.427      2.018      2.876         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.00it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.20it/s]
                   all         60        201      0.646      0.597      0.581      0.314

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    117/500      1.62G      2.356       1.98      2.804         22        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.70it/s]
                   all         60        201      0.713      0.532      0.581      0.328

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    118/500      1.63G       2.35      1.974      2.838         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.26it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.70it/s]
                   all         60        201       0.54      0.547      0.541      0.294

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    119/500      1.63G      2.334      1.935      2.766         41        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.47it/s]
                   all         60        201      0.566      0.522      0.565       0.31

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    120/500      1.62G      2.371      1.949      2.788         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.59it/s]
                   all         60        201      0.598      0.557      0.548      0.305

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    121/500      1.63G      2.335      1.901      2.742         27        640: 100%|██████████| 90/90 [00:12<00:00,  6.98it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.94it/s]
                   all         60        201      0.542      0.567      0.522      0.301

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    122/500      1.62G      2.363          2      2.823         35        640: 100%|██████████| 90/90 [00:12<00:00,  7.08it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.49it/s]
                   all         60        201       0.68      0.517       0.56      0.317

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    123/500      1.62G      2.362      1.906      2.819         25        640: 100%|██████████| 90/90 [00:12<00:00,  7.08it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.53it/s]
                   all         60        201      0.537      0.627      0.573      0.321

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    124/500      1.63G      2.376      1.961      2.809         26        640: 100%|██████████| 90/90 [00:12<00:00,  7.00it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.596      0.542      0.537      0.293

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    125/500      1.62G      2.283      1.897      2.758         41        640: 100%|██████████| 90/90 [00:12<00:00,  6.99it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.01it/s]
                   all         60        201      0.589      0.567      0.572      0.328

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    126/500      1.62G       2.29      1.878      2.761         37        640: 100%|██████████| 90/90 [00:12<00:00,  6.97it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.39it/s]
                   all         60        201      0.683      0.507      0.563      0.324

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    127/500      1.62G      2.305      1.867      2.778         44        640: 100%|██████████| 90/90 [00:12<00:00,  7.14it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.94it/s]
                   all         60        201      0.692      0.527      0.585       0.34

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    128/500      1.63G      2.396      1.968        2.8         55        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.53it/s]
                   all         60        201      0.611      0.572      0.565      0.311

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    129/500      1.62G      2.293      1.884      2.744         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.17it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.68it/s]
                   all         60        201      0.731      0.542      0.608      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    130/500      1.62G       2.27      1.822      2.739         30        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.67it/s]
                   all         60        201      0.671      0.562      0.602      0.346

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    131/500      1.63G       2.26      1.804      2.728         39        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.59it/s]
                   all         60        201      0.667      0.547      0.601      0.359

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    132/500      1.63G      2.303      1.903      2.762         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.14it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.45it/s]
                   all         60        201      0.649      0.577      0.584       0.32

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    133/500      1.62G      2.247      1.763       2.73         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.88it/s]
                   all         60        201      0.552      0.602      0.569      0.317

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    134/500      1.62G      2.277      1.833      2.729         23        640: 100%|██████████| 90/90 [00:12<00:00,  7.05it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.615      0.595      0.556      0.318

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    135/500      1.62G        2.3      1.827       2.74         39        640: 100%|██████████| 90/90 [00:12<00:00,  7.05it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.39it/s]
                   all         60        201      0.621      0.571      0.563      0.319

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    136/500      1.62G      2.253      1.784      2.745         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.11it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.69it/s]
                   all         60        201      0.589      0.632      0.578      0.313

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    137/500      1.63G       2.27      1.792      2.716         32        640: 100%|██████████| 90/90 [00:12<00:00,  6.97it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.90it/s]
                   all         60        201       0.64      0.567      0.586      0.329

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    138/500      1.62G      2.255      1.815      2.728         38        640: 100%|██████████| 90/90 [00:12<00:00,  7.17it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.12it/s]
                   all         60        201      0.637      0.557      0.572      0.312

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    139/500      1.62G      2.217      1.741      2.667         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.80it/s]
                   all         60        201      0.632      0.607      0.598      0.341

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    140/500      1.63G      2.209      1.768      2.685         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.37it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.81it/s]
                   all         60        201      0.645      0.587      0.589       0.35

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    141/500      1.62G      2.227      1.791      2.711         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.31it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.71it/s]
                   all         60        201      0.646      0.562      0.605      0.341

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    142/500      1.62G      2.198      1.769      2.703         49        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.47it/s]
                   all         60        201       0.62      0.527      0.603      0.341

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    143/500      1.63G      2.244      1.795      2.716         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.69it/s]
                   all         60        201      0.636      0.577      0.595      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    144/500      1.62G      2.226      1.758      2.688         48        640: 100%|██████████| 90/90 [00:12<00:00,  7.39it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.59it/s]
                   all         60        201      0.575      0.607       0.58      0.331

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    145/500      1.63G      2.216      1.729      2.646         19        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.66it/s]
                   all         60        201      0.622      0.592      0.598      0.347

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    146/500      1.62G      2.183      1.736      2.675         36        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.71it/s]
                   all         60        201      0.719      0.567        0.6      0.332

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    147/500      1.62G      2.223      1.755      2.662         41        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201      0.585      0.582      0.582      0.332

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    148/500      1.62G      2.241      1.736      2.687         42        640: 100%|██████████| 90/90 [00:12<00:00,  7.06it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.46it/s]
                   all         60        201      0.699      0.562      0.586      0.316

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    149/500      1.63G      2.195      1.709      2.649         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.86it/s]
                   all         60        201      0.669      0.583      0.596      0.345

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    150/500      1.62G       2.16      1.717      2.672         25        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.05it/s]
                   all         60        201      0.615      0.562      0.578      0.316

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    151/500      1.62G      2.174      1.685      2.632         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.14it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.60it/s]
                   all         60        201      0.629      0.582      0.572      0.314

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    152/500      1.62G       2.14      1.675      2.641         49        640: 100%|██████████| 90/90 [00:12<00:00,  7.15it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.76it/s]
                   all         60        201      0.701      0.542      0.601      0.339

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    153/500      1.62G       2.15      1.669      2.621         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201      0.677      0.532      0.588      0.343

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    154/500      1.62G      2.181      1.704      2.671         30        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.54it/s]
                   all         60        201      0.662      0.567      0.596      0.344

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    155/500      1.62G      2.149      1.713       2.65         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.13it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.50it/s]
                   all         60        201       0.69      0.507      0.561      0.325

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    156/500      1.62G      2.182      1.675      2.652         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.702      0.539      0.605      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    157/500      1.63G      2.152      1.719      2.625         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.75it/s]
                   all         60        201      0.645      0.562      0.604      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    158/500      1.62G      2.133      1.687      2.594         57        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.58it/s]
                   all         60        201       0.59      0.572      0.569      0.322

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    159/500      1.62G      2.128      1.631      2.647         39        640: 100%|██████████| 90/90 [00:12<00:00,  7.08it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.84it/s]
                   all         60        201      0.659      0.572      0.584      0.328

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    160/500      1.62G      2.182      1.677      2.607         21        640: 100%|██████████| 90/90 [00:12<00:00,  6.98it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.91it/s]
                   all         60        201      0.622      0.592      0.588      0.349

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    161/500      1.62G      2.138      1.666      2.638         20        640: 100%|██████████| 90/90 [00:12<00:00,  6.98it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.13it/s]
                   all         60        201      0.644      0.532       0.57      0.314

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    162/500      1.62G      2.193      1.691      2.675         23        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.63it/s]
                   all         60        201      0.693      0.582      0.622      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    163/500      1.62G      2.155      1.666      2.621         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.87it/s]
                   all         60        201      0.703      0.592      0.628      0.349

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    164/500      1.62G      2.138      1.591      2.604         35        640: 100%|██████████| 90/90 [00:12<00:00,  7.07it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.38it/s]
                   all         60        201      0.681      0.597      0.614      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    165/500      1.63G      2.144      1.706      2.622         38        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.65it/s]
                   all         60        201      0.636      0.573      0.594      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    166/500      1.62G      2.135      1.617      2.606         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.28it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.02it/s]
                   all         60        201      0.633      0.637      0.608      0.338

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    167/500      1.62G        2.1      1.627      2.591         49        640: 100%|██████████| 90/90 [00:12<00:00,  7.08it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.51it/s]
                   all         60        201      0.635      0.577      0.598      0.345

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    168/500      1.62G      2.111      1.587      2.583         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.18it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.669      0.622      0.628      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    169/500      1.62G      2.127      1.629      2.628         21        640: 100%|██████████| 90/90 [00:12<00:00,  7.16it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.93it/s]
                   all         60        201      0.711      0.572      0.611      0.346

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    170/500      1.63G      2.161      1.649      2.626         30        640: 100%|██████████| 90/90 [00:12<00:00,  7.17it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.76it/s]
                   all         60        201       0.65      0.592      0.622      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    171/500      1.62G      2.096      1.598      2.596         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.40it/s]
                   all         60        201      0.656      0.552      0.597      0.321

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    172/500      1.62G       2.13      1.605      2.583         29        640: 100%|██████████| 90/90 [00:12<00:00,  7.08it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.47it/s]
                   all         60        201      0.615      0.592      0.579      0.334

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    173/500      1.62G       2.08       1.59      2.567         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.15it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.62it/s]
                   all         60        201      0.666      0.512      0.579      0.336

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    174/500      1.62G       2.08      1.619       2.58         48        640: 100%|██████████| 90/90 [00:12<00:00,  7.10it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.85it/s]
                   all         60        201       0.63      0.572      0.593      0.343

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    175/500      1.62G      2.152        1.6      2.626         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.38it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.10it/s]
                   all         60        201      0.582      0.632      0.589      0.333

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    176/500      1.62G      2.101      1.609      2.602         16        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.88it/s]
                   all         60        201      0.595      0.592      0.557      0.327

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    177/500      1.62G      2.112       1.62      2.566         38        640: 100%|██████████| 90/90 [00:12<00:00,  7.11it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.44it/s]
                   all         60        201      0.589      0.627      0.588       0.34

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    178/500      1.62G      2.064      1.566      2.557         25        640: 100%|██████████| 90/90 [00:12<00:00,  7.07it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.76it/s]
                   all         60        201      0.614      0.625       0.63      0.368

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    179/500      1.62G      2.093      1.565      2.542         21        640: 100%|██████████| 90/90 [00:12<00:00,  7.13it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.40it/s]
                   all         60        201      0.658      0.545      0.585      0.337

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    180/500      1.63G      2.092      1.588       2.56         45        640: 100%|██████████| 90/90 [00:12<00:00,  7.05it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.42it/s]
                   all         60        201      0.594      0.652      0.596      0.345

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    181/500      1.62G      2.103      1.584      2.589         30        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.53it/s]
                   all         60        201      0.654      0.517      0.575      0.335

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    182/500      1.63G       2.08      1.632      2.594         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.39it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.49it/s]
                   all         60        201      0.653      0.582      0.592      0.343

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    183/500      1.63G       2.08       1.61      2.607         35        640: 100%|██████████| 90/90 [00:12<00:00,  7.33it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.66it/s]
                   all         60        201      0.615      0.617      0.601      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    184/500      1.62G      2.049      1.552      2.566         41        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.47it/s]
                   all         60        201       0.62      0.592      0.592      0.345

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    185/500      1.62G      2.032      1.505      2.526         37        640: 100%|██████████| 90/90 [00:12<00:00,  7.33it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.80it/s]
                   all         60        201      0.643      0.617      0.608      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    186/500      1.62G      2.048      1.534      2.542         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.94it/s]
                   all         60        201      0.654      0.587      0.588      0.347

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    187/500      1.62G      2.084      1.545      2.552         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.09it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  5.28it/s]
                   all         60        201      0.637      0.612      0.619      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    188/500      1.62G      2.024      1.526      2.532         29        640: 100%|██████████| 90/90 [00:12<00:00,  7.33it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.92it/s]
                   all         60        201      0.642      0.577      0.612      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    189/500      1.62G      2.009      1.535      2.546         37        640: 100%|██████████| 90/90 [00:14<00:00,  6.40it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.89it/s]
                   all         60        201      0.662      0.587      0.598      0.348

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    190/500      1.62G      1.963      1.464      2.465         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.29it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.04it/s]
                   all         60        201      0.606      0.651      0.603      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    191/500      1.63G      2.039      1.499      2.548         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.31it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.67it/s]
                   all         60        201      0.652      0.541      0.586      0.341

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    192/500      1.62G      2.096       1.57      2.558         48        640: 100%|██████████| 90/90 [00:12<00:00,  7.34it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.12it/s]
                   all         60        201      0.664      0.587      0.613      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    193/500      1.62G      2.044      1.506      2.531         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.33it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.87it/s]
                   all         60        201       0.66      0.632      0.634       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    194/500      1.62G      2.048        1.5      2.541         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.81it/s]
                   all         60        201      0.654      0.574      0.599      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    195/500      1.63G      2.023      1.471      2.541         38        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.83it/s]
                   all         60        201      0.689      0.542      0.612      0.363

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    196/500      1.62G      2.014      1.522       2.56         15        640: 100%|██████████| 90/90 [00:12<00:00,  7.22it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.50it/s]
                   all         60        201      0.645      0.602      0.591      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    197/500      1.62G      1.984      1.461      2.503         50        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.14it/s]
                   all         60        201      0.597      0.597      0.596      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    198/500      1.63G      2.015      1.543      2.552         38        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.66it/s]
                   all         60        201      0.633      0.637      0.607      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    199/500      1.63G      2.019      1.506      2.525         42        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.97it/s]
                   all         60        201      0.594      0.582      0.572       0.33

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    200/500      1.63G      1.988      1.515      2.518         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.29it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.43it/s]
                   all         60        201      0.613      0.575      0.604      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    201/500      1.63G      1.997      1.535       2.51         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.24it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201      0.662      0.587       0.62      0.344

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    202/500      1.62G      1.931      1.427      2.467         27        640: 100%|██████████| 90/90 [00:12<00:00,  7.26it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.21it/s]
                   all         60        201      0.663      0.587      0.622      0.349

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    203/500      1.63G      2.002      1.512      2.512         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.71it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.03it/s]
                   all         60        201      0.603      0.602      0.587      0.334

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    204/500      1.62G      2.015      1.534      2.506         19        640: 100%|██████████| 90/90 [00:12<00:00,  7.27it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201      0.718      0.597      0.614      0.343

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    205/500      1.62G      2.003      1.527      2.511         49        640: 100%|██████████| 90/90 [00:12<00:00,  7.37it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.65it/s]
                   all         60        201      0.663      0.607      0.597      0.334

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    206/500      1.62G      2.032      1.494      2.526         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.80it/s]
                   all         60        201      0.675      0.559      0.601      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    207/500      1.62G      1.943        1.4      2.485         46        640: 100%|██████████| 90/90 [00:12<00:00,  7.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.64it/s]
                   all         60        201      0.679      0.577      0.597      0.341

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    208/500      1.62G      1.966      1.468       2.48         27        640: 100%|██████████| 90/90 [00:11<00:00,  7.52it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.80it/s]
                   all         60        201      0.637       0.55      0.581      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    209/500      1.62G      1.941      1.429      2.473         38        640: 100%|██████████| 90/90 [00:11<00:00,  7.55it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.67it/s]
                   all         60        201      0.617       0.57      0.584      0.344

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    210/500      1.62G      2.014      1.512      2.477         42        640: 100%|██████████| 90/90 [00:11<00:00,  7.52it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.17it/s]
                   all         60        201      0.603      0.567      0.562      0.327

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    211/500      1.63G      2.001      1.512      2.489         30        640: 100%|██████████| 90/90 [00:11<00:00,  7.54it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.13it/s]
                   all         60        201      0.599      0.564      0.555      0.315

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    212/500      1.63G      1.954      1.423      2.467         35        640: 100%|██████████| 90/90 [00:12<00:00,  6.97it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.80it/s]
                   all         60        201      0.567      0.613      0.594      0.338

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    213/500      1.62G      1.963       1.41      2.439         61        640: 100%|██████████| 90/90 [00:12<00:00,  6.99it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.93it/s]
                   all         60        201      0.641      0.551      0.583      0.332

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    214/500      1.62G       1.97      1.428      2.489         38        640: 100%|██████████| 90/90 [00:12<00:00,  7.25it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.15it/s]
                   all         60        201      0.628      0.572      0.605       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    215/500      1.62G      1.974      1.454      2.475         28        640: 100%|██████████| 90/90 [00:12<00:00,  6.99it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.37it/s]
                   all         60        201      0.597      0.602      0.588      0.342

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    216/500      1.62G       1.97      1.406      2.473         31        640: 100%|██████████| 90/90 [00:12<00:00,  7.06it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.82it/s]
                   all         60        201      0.615       0.58        0.6      0.347

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    217/500      1.63G      1.925      1.411       2.46         27        640: 100%|██████████| 90/90 [00:14<00:00,  6.35it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  5.62it/s]
                   all         60        201      0.594      0.607      0.589      0.342

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    218/500      1.62G      1.975      1.488      2.503         37        640: 100%|██████████| 90/90 [00:15<00:00,  5.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.02it/s]
                   all         60        201      0.612      0.597      0.592      0.346

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    219/500      1.62G      1.919      1.447      2.463         38        640: 100%|██████████| 90/90 [00:12<00:00,  6.99it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.92it/s]
                   all         60        201      0.705      0.557      0.599      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    220/500      1.62G      1.949      1.413      2.441         38        640: 100%|██████████| 90/90 [00:12<00:00,  6.97it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.87it/s]
                   all         60        201      0.683      0.567      0.596       0.35

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    221/500      1.63G      1.911      1.399      2.439         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.34it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.47it/s]
                   all         60        201      0.663      0.582      0.596      0.347

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    222/500      1.62G      1.956      1.413      2.456         41        640: 100%|██████████| 90/90 [00:12<00:00,  7.40it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.76it/s]
                   all         60        201      0.636      0.587       0.61      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    223/500      1.62G      1.893      1.416      2.473         39        640: 100%|██████████| 90/90 [00:12<00:00,  7.39it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.90it/s]
                   all         60        201      0.709      0.552      0.576      0.331

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    224/500      1.63G      1.957      1.427      2.478         62        640: 100%|██████████| 90/90 [00:12<00:00,  7.22it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.79it/s]
                   all         60        201      0.598      0.567      0.558      0.327

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    225/500      1.62G      1.933      1.403       2.44         41        640: 100%|██████████| 90/90 [00:12<00:00,  6.98it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  6.78it/s]
                   all         60        201       0.63      0.592      0.581      0.342

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    226/500      1.62G      1.976      1.432       2.47         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.97it/s]
                   all         60        201      0.646      0.592      0.596      0.359

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    227/500      1.62G      1.876      1.387      2.406         30        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.37it/s]
                   all         60        201      0.658      0.555      0.588      0.345

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    228/500      1.63G      1.902      1.389      2.424         29        640: 100%|██████████| 90/90 [00:12<00:00,  7.01it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.15it/s]
                   all         60        201      0.633      0.607      0.611      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    229/500      1.62G      1.943      1.369      2.421         30        640: 100%|██████████| 90/90 [00:19<00:00,  4.71it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  6.94it/s]
                   all         60        201      0.635      0.545      0.587      0.331

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    230/500      1.62G      1.934      1.417      2.459         62        640: 100%|██████████| 90/90 [00:14<00:00,  6.13it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.44it/s]
                   all         60        201      0.738      0.532      0.591       0.35

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    231/500      1.62G      1.925      1.343      2.427         29        640: 100%|██████████| 90/90 [00:14<00:00,  6.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.61it/s]
                   all         60        201       0.62      0.587        0.6      0.365

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    232/500      1.63G       1.91      1.342       2.43         42        640: 100%|██████████| 90/90 [00:14<00:00,  6.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  6.29it/s]
                   all         60        201      0.634       0.63        0.6      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    233/500      1.62G      1.969      1.413      2.452         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.58it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.11it/s]
                   all         60        201      0.653      0.617      0.624      0.362

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    234/500      1.62G      1.967      1.407      2.445         47        640: 100%|██████████| 90/90 [00:12<00:00,  7.11it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.54it/s]
                   all         60        201      0.613      0.622      0.619      0.362

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    235/500      1.63G      1.899      1.366      2.417         32        640: 100%|██████████| 90/90 [00:12<00:00,  7.21it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.71it/s]
                   all         60        201      0.735      0.557      0.608      0.358

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    236/500      1.62G        1.9      1.368      2.443         28        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.99it/s]
                   all         60        201      0.639      0.607      0.609      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    237/500      1.62G      1.889      1.355      2.415         26        640: 100%|██████████| 90/90 [00:12<00:00,  7.20it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.79it/s]
                   all         60        201      0.649      0.562      0.592      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    238/500      1.62G      1.881      1.345      2.417         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.49it/s]
                   all         60        201      0.609      0.612        0.6      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    239/500      1.62G      1.907      1.339      2.417         43        640: 100%|██████████| 90/90 [00:12<00:00,  7.37it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.21it/s]
                   all         60        201      0.612      0.617      0.592      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    240/500      1.62G      1.886      1.391       2.43         24        640: 100%|██████████| 90/90 [00:12<00:00,  7.32it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.59it/s]
                   all         60        201      0.687      0.589      0.618      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    241/500      1.62G      1.905      1.363      2.383         42        640: 100%|██████████| 90/90 [00:12<00:00,  7.36it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.45it/s]
                   all         60        201      0.642      0.624      0.638      0.373

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    242/500      1.63G      1.904      1.332      2.422         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.78it/s]
                   all         60        201      0.644      0.638      0.628      0.358

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    243/500      1.63G      1.889       1.31      2.396         33        640: 100%|██████████| 90/90 [00:12<00:00,  7.23it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.734       0.55       0.61      0.354

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    244/500      1.62G      1.872      1.334      2.385         17        640: 100%|██████████| 90/90 [00:12<00:00,  7.18it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.85it/s]
                   all         60        201      0.682      0.597       0.61      0.349

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    245/500      1.63G      1.921       1.36      2.401         52        640: 100%|██████████| 90/90 [00:12<00:00,  7.29it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  9.11it/s]
                   all         60        201      0.733      0.572      0.627       0.37

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    246/500      1.63G      1.882      1.359      2.406         18        640: 100%|██████████| 90/90 [00:13<00:00,  6.66it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.09it/s]
                   all         60        201       0.67      0.595      0.606      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    247/500      1.62G      1.871      1.349      2.404         25        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.54it/s]
                   all         60        201      0.611      0.649      0.629      0.363

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    248/500      1.62G      1.902      1.336      2.383         40        640: 100%|██████████| 90/90 [00:12<00:00,  7.08it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.71it/s]
                   all         60        201      0.658      0.637      0.627      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    249/500      1.62G      1.884      1.309       2.42         53        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.78it/s]
                   all         60        201      0.675       0.58       0.61      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    250/500      1.62G      1.814      1.289      2.366         29        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.38it/s]
                   all         60        201      0.708      0.542      0.605      0.358

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    251/500      1.62G      1.863      1.302      2.405         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.03it/s]
                   all         60        201      0.717      0.552       0.61       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    252/500      1.62G      1.847      1.338       2.38         40        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.42it/s]
                   all         60        201      0.602      0.642      0.614      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    253/500      1.62G      1.858      1.365      2.401         46        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.35it/s]
                   all         60        201      0.639      0.572      0.613       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    254/500      1.62G      1.893      1.322      2.396         37        640: 100%|██████████| 90/90 [00:12<00:00,  6.93it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.12it/s]
                   all         60        201      0.664      0.617      0.603      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    255/500      1.62G      1.866      1.306      2.418         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.27it/s]
                   all         60        201      0.702      0.609      0.617       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    256/500      1.62G      1.832      1.304      2.377         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.99it/s]
                   all         60        201      0.649      0.607      0.612      0.369

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    257/500      1.62G      1.844      1.292      2.347         48        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.30it/s]
                   all         60        201       0.71      0.532      0.597      0.343

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    258/500      1.62G      1.904      1.311      2.446         30        640: 100%|██████████| 90/90 [00:12<00:00,  7.00it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.42it/s]
                   all         60        201      0.688       0.57      0.599      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    259/500      1.62G      1.857       1.34      2.398         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.89it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.05it/s]
                   all         60        201      0.729      0.547      0.611      0.361

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    260/500      1.62G      1.824      1.267      2.352         38        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.97it/s]
                   all         60        201      0.655      0.597      0.622       0.37

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    261/500      1.63G      1.856      1.322      2.392         23        640: 100%|██████████| 90/90 [00:12<00:00,  6.97it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.707      0.562      0.615      0.371

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    262/500      1.62G       1.87      1.328      2.421         48        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.39it/s]
                   all         60        201      0.667      0.602      0.627      0.373

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    263/500      1.63G      1.804      1.251      2.358         32        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.29it/s]
                   all         60        201      0.694      0.587      0.633      0.364

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    264/500      1.62G      1.864       1.28      2.383         47        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.01it/s]
                   all         60        201      0.706      0.612      0.613      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    265/500      1.63G       1.85      1.294      2.371         34        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.34it/s]
                   all         60        201      0.667      0.567      0.614      0.368

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    266/500      1.63G      1.819      1.322       2.38         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.37it/s]
                   all         60        201      0.712       0.59      0.623      0.375

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    267/500      1.62G      1.809      1.273      2.349         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.18it/s]
                   all         60        201      0.757      0.542      0.621      0.373

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    268/500      1.63G      1.795      1.263      2.361         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.89it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.76it/s]
                   all         60        201      0.627      0.597      0.593      0.354

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    269/500      1.62G      1.807      1.255       2.37         32        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.34it/s]
                   all         60        201      0.637      0.617      0.607      0.349

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    270/500      1.62G      1.793      1.264      2.339         46        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.68it/s]
                   all         60        201      0.671      0.607      0.627      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    271/500      1.63G      1.797      1.231      2.351         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.18it/s]
                   all         60        201      0.678      0.602       0.63      0.372

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    272/500      1.63G      1.783      1.226      2.342         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.34it/s]
                   all         60        201      0.646      0.617      0.616      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    273/500      1.62G      1.814      1.266       2.37         27        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.98it/s]
                   all         60        201      0.695      0.589      0.623      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    274/500      1.62G      1.817       1.27      2.359         50        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.24it/s]
                   all         60        201      0.692      0.557      0.614      0.365

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    275/500      1.63G      1.783      1.238      2.364         50        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.98it/s]
                   all         60        201      0.664      0.589      0.605      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    276/500      1.63G      1.805      1.295      2.389         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.81it/s]
                   all         60        201      0.655      0.607      0.617      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    277/500      1.62G      1.827      1.242      2.374         31        640: 100%|██████████| 90/90 [00:12<00:00,  6.93it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.09it/s]
                   all         60        201      0.651      0.627      0.636      0.387

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    278/500      1.62G       1.79      1.239      2.347         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.48it/s]
                   all         60        201      0.671      0.559      0.606      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    279/500      1.62G      1.828      1.296      2.386         44        640: 100%|██████████| 90/90 [00:12<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.51it/s]
                   all         60        201      0.726       0.54      0.604      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    280/500      1.62G      1.743      1.224      2.342         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.04it/s]
                   all         60        201      0.672      0.597      0.631       0.38

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    281/500      1.63G      1.817      1.278       2.35         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.676      0.593      0.625      0.364

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    282/500      1.63G       1.79      1.223      2.363         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.16it/s]
                   all         60        201      0.706      0.597      0.626      0.361

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    283/500      1.63G      1.774      1.241      2.311         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.66it/s]
                   all         60        201      0.711      0.597      0.613      0.363

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    284/500      1.63G      1.793      1.215      2.362         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.27it/s]
                   all         60        201       0.66      0.602       0.62      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    285/500      1.62G      1.748      1.204       2.32         43        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.12it/s]
                   all         60        201      0.746      0.572      0.625      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    286/500      1.62G      1.766      1.246      2.376         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.13it/s]
                   all         60        201       0.63      0.622      0.605      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    287/500      1.62G      1.773      1.211      2.348         49        640: 100%|██████████| 90/90 [00:12<00:00,  6.93it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.21it/s]
                   all         60        201      0.684      0.602      0.626      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    288/500      1.62G      1.765      1.208      2.337         37        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.30it/s]
                   all         60        201      0.736      0.567      0.617      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    289/500      1.63G      1.712      1.209      2.311         36        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.45it/s]
                   all         60        201      0.721      0.607      0.618      0.365

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    290/500      1.62G      1.769      1.223      2.315         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.40it/s]
                   all         60        201      0.683      0.592       0.61      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    291/500      1.62G      1.782      1.246      2.329         44        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.21it/s]
                   all         60        201      0.676      0.582      0.612      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    292/500      1.62G      1.761      1.202      2.339         25        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.09it/s]
                   all         60        201      0.725      0.572      0.614      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    293/500      1.62G      1.752      1.162      2.314         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.80it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.27it/s]
                   all         60        201       0.72      0.577      0.624      0.365

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    294/500      1.62G      1.743      1.183      2.287         57        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.63it/s]
                   all         60        201      0.682      0.618      0.641      0.378

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    295/500      1.62G      1.788       1.22      2.349         25        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.12it/s]
                   all         60        201      0.681      0.592      0.615      0.362

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    296/500      1.62G      1.748      1.237      2.355         40        640: 100%|██████████| 90/90 [00:12<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.99it/s]
                   all         60        201      0.605      0.637      0.611      0.363

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    297/500      1.62G      1.727      1.199      2.323         47        640: 100%|██████████| 90/90 [00:13<00:00,  6.89it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.55it/s]
                   all         60        201      0.642      0.597        0.6      0.346

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    298/500      1.63G      1.716      1.138      2.301         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.28it/s]
                   all         60        201      0.717       0.58      0.607      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    299/500      1.63G      1.757       1.18      2.328         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.99it/s]
                   all         60        201      0.608       0.61      0.593      0.347

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    300/500      1.63G      1.778      1.237      2.329         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201      0.655      0.592       0.59      0.338

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    301/500      1.63G      1.762      1.199      2.345         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.71it/s]
                   all         60        201      0.667      0.607      0.595      0.342

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    302/500      1.62G      1.739      1.172      2.304         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.36it/s]
                   all         60        201      0.695      0.602      0.617       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    303/500      1.63G      1.713      1.232       2.34         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.63it/s]
                   all         60        201      0.675      0.562      0.608      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    304/500      1.63G      1.738      1.175      2.322         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.83it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.47it/s]
                   all         60        201       0.71      0.537      0.593      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    305/500      1.62G      1.715      1.159      2.308         40        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.54it/s]
                   all         60        201      0.692      0.557      0.613      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    306/500      1.62G      1.771      1.175      2.301         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.95it/s]
                   all         60        201      0.656      0.582      0.605      0.358

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    307/500      1.62G      1.752      1.173      2.308         40        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.10it/s]
                   all         60        201      0.667      0.577      0.613       0.37

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    308/500      1.62G      1.696       1.14      2.285         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.77it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.04it/s]
                   all         60        201      0.619      0.612      0.599      0.362

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    309/500      1.62G      1.758      1.211      2.315         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.70it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.08it/s]
                   all         60        201      0.645      0.582      0.597      0.365

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    310/500      1.62G      1.685      1.147      2.267         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.80it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.58it/s]
                   all         60        201       0.74      0.547      0.606      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    311/500      1.62G      1.736      1.157      2.278         50        640: 100%|██████████| 90/90 [00:13<00:00,  6.78it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.18it/s]
                   all         60        201      0.677      0.577      0.595      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    312/500      1.62G      1.712      1.132      2.276         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.708      0.567      0.593      0.363

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    313/500      1.62G      1.703       1.17      2.306         42        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.04it/s]
                   all         60        201      0.723       0.57       0.63      0.379

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    314/500      1.62G      1.715      1.175      2.289         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.33it/s]
                   all         60        201       0.66      0.602      0.614      0.369

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    315/500      1.62G      1.733       1.15      2.302         30        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.66it/s]
                   all         60        201      0.645      0.587      0.608       0.37

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    316/500      1.62G      1.709      1.145      2.305         38        640: 100%|██████████| 90/90 [00:13<00:00,  6.78it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.64it/s]
                   all         60        201      0.701      0.606      0.633      0.377

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    317/500      1.62G      1.703      1.191      2.296         24        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.12it/s]
                   all         60        201      0.681      0.582      0.617      0.365

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    318/500      1.62G      1.715      1.143        2.3         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.02it/s]
                   all         60        201      0.644      0.611      0.631      0.377

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    319/500      1.62G      1.727      1.171      2.294         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.80it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.46it/s]
                   all         60        201      0.714      0.562      0.622      0.378

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    320/500      1.63G      1.667      1.137      2.262         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.97it/s]
                   all         60        201      0.652      0.592      0.619      0.375

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    321/500      1.62G      1.769      1.182      2.313         21        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.17it/s]
                   all         60        201      0.668      0.601      0.618       0.37

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    322/500      1.62G      1.695      1.159      2.296         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.07it/s]
                   all         60        201      0.729      0.542      0.606      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    323/500      1.62G      1.678      1.157      2.276         16        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.46it/s]
                   all         60        201      0.721      0.565      0.611       0.37

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    324/500      1.62G      1.703      1.161      2.321         22        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.654      0.567      0.596      0.358

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    325/500      1.62G      1.714      1.157      2.282         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.65it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.92it/s]
                   all         60        201      0.623      0.617       0.61      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    326/500      1.63G      1.691      1.137      2.292         49        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.48it/s]
                   all         60        201      0.773      0.526        0.6      0.363

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    327/500      1.62G       1.69      1.154       2.32         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.08it/s]
                   all         60        201      0.642      0.587      0.598      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    328/500      1.62G      1.714      1.159      2.287         29        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.25it/s]
                   all         60        201      0.694      0.557      0.612      0.371

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    329/500      1.62G      1.708      1.119      2.283         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.30it/s]
                   all         60        201      0.616      0.577       0.59      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    330/500      1.62G      1.672      1.134      2.284         41        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.64it/s]
                   all         60        201      0.651      0.612      0.612      0.374

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    331/500      1.62G      1.688      1.144      2.275         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.80it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.28it/s]
                   all         60        201      0.656      0.597      0.605      0.374

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    332/500      1.62G      1.736      1.163      2.316         51        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.31it/s]
                   all         60        201      0.649      0.592      0.608      0.373

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    333/500      1.62G      1.676      1.113      2.282         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.71it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.634      0.603      0.613      0.373

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    334/500      1.62G      1.695      1.182      2.283         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.68it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.43it/s]
                   all         60        201      0.673      0.623       0.61      0.368

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    335/500      1.62G      1.692      1.137      2.273         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.73it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.37it/s]
                   all         60        201      0.737      0.532      0.596      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    336/500      1.63G      1.693       1.15      2.257         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.95it/s]
                   all         60        201      0.664      0.617      0.615      0.377

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    337/500      1.62G      1.644      1.119       2.28         24        640: 100%|██████████| 90/90 [00:13<00:00,  6.80it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.73it/s]
                   all         60        201      0.672      0.602      0.608      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    338/500      1.62G       1.63      1.085      2.262         47        640: 100%|██████████| 90/90 [00:13<00:00,  6.78it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.19it/s]
                   all         60        201      0.633      0.607      0.601      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    339/500      1.63G      1.673      1.131      2.276         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.28it/s]
                   all         60        201      0.719      0.552      0.593      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    340/500      1.62G      1.669       1.14      2.249         31        640: 100%|██████████| 90/90 [00:14<00:00,  6.30it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.07it/s]
                   all         60        201      0.649       0.57       0.58      0.346

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    341/500      1.62G       1.65      1.104       2.24         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.17it/s]
                   all         60        201        0.6      0.613      0.596      0.358

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    342/500      1.63G      1.644      1.152      2.267         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.80it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.97it/s]
                   all         60        201      0.663      0.582        0.6      0.348

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    343/500      1.62G      1.642      1.091      2.276         17        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.29it/s]
                   all         60        201      0.682      0.544      0.604      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    344/500      1.62G      1.662      1.102      2.281         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.03it/s]
                   all         60        201      0.714      0.582      0.617      0.368

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    345/500      1.63G      1.628      1.083      2.248         45        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.44it/s]
                   all         60        201      0.669      0.634      0.633      0.372

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    346/500      1.63G      1.646      1.085      2.247         49        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.13it/s]
                   all         60        201      0.681      0.607      0.615      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    347/500      1.62G      1.634      1.094      2.249         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.74it/s]
                   all         60        201      0.694      0.542      0.586      0.345

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    348/500      1.62G      1.653      1.113      2.262         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.93it/s]
                   all         60        201      0.602      0.607      0.586      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    349/500      1.63G      1.648      1.141      2.253         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.83it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.646      0.577      0.599      0.365

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    350/500      1.63G      1.666      1.096      2.258         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.87it/s]
                   all         60        201      0.694      0.552        0.6      0.364

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    351/500      1.63G      1.627      1.079      2.251         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.77it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.93it/s]
                   all         60        201      0.709      0.577      0.607      0.368

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    352/500      1.62G      1.604      1.058      2.219         45        640: 100%|██████████| 90/90 [00:13<00:00,  6.83it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.03it/s]
                   all         60        201      0.664      0.587      0.596      0.368

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    353/500      1.62G      1.604      1.075      2.243         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.84it/s]
                   all         60        201      0.614      0.597      0.605      0.375

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    354/500      1.62G      1.586      1.092      2.259         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.666      0.576       0.61      0.375

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    355/500      1.62G       1.65      1.126      2.269         17        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.02it/s]
                   all         60        201      0.659      0.612      0.607      0.375

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    356/500      1.63G       1.65      1.094      2.263         50        640: 100%|██████████| 90/90 [00:12<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.10it/s]
                   all         60        201      0.613      0.607      0.592      0.363

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    357/500      1.62G      1.619      1.091      2.257         45        640: 100%|██████████| 90/90 [00:13<00:00,  6.89it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.643      0.577      0.586      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    358/500      1.62G      1.646      1.091       2.24         42        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.34it/s]
                   all         60        201      0.635      0.596      0.594      0.357

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    359/500      1.62G       1.64      1.118       2.24         79        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.16it/s]
                   all         60        201      0.659      0.602      0.605      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    360/500      1.62G      1.662      1.108      2.235         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.83it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.49it/s]
                   all         60        201      0.647      0.573      0.601      0.359

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    361/500      1.62G      1.613      1.098      2.224         26        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.21it/s]
                   all         60        201      0.675      0.572       0.61      0.364

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    362/500      1.63G      1.572      1.076       2.23         44        640: 100%|██████████| 90/90 [00:13<00:00,  6.89it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.29it/s]
                   all         60        201      0.657      0.611      0.602      0.356

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    363/500      1.62G      1.639      1.088      2.215         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.15it/s]
                   all         60        201      0.652      0.597      0.596      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    364/500      1.62G      1.632      1.066      2.226         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.617      0.622      0.589      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    365/500      1.62G      1.608      1.075      2.246         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.39it/s]
                   all         60        201      0.623      0.612      0.611       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    366/500      1.63G      1.645      1.094      2.247         38        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.30it/s]
                   all         60        201      0.719      0.567       0.61      0.359

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    367/500      1.62G      1.615      1.057      2.222         22        640: 100%|██████████| 90/90 [00:12<00:00,  6.93it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.636      0.608      0.597      0.355

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    368/500      1.62G       1.61      1.084      2.218         49        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.628      0.622      0.605       0.36

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    369/500      1.62G      1.608      1.039      2.194         51        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.626      0.616      0.603      0.366

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    370/500      1.62G      1.614      1.058      2.231         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.72it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.07it/s]
                   all         60        201      0.681      0.597      0.603      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    371/500      1.62G      1.623      1.065       2.23         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.73it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.13it/s]
                   all         60        201      0.714      0.584      0.605      0.362

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    372/500      1.62G      1.681      1.121       2.27         57        640: 100%|██████████| 90/90 [00:13<00:00,  6.77it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.91it/s]
                   all         60        201      0.757      0.532       0.59      0.351

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    373/500      1.63G      1.622      1.054      2.194         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.79it/s]
                   all         60        201      0.605      0.577      0.583       0.35

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    374/500      1.62G      1.605      1.054      2.219         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.05it/s]
                   all         60        201      0.703      0.508      0.567      0.345

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    375/500      1.63G      1.591      1.072      2.244         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.48it/s]
                   all         60        201      0.698      0.518      0.565       0.35

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    376/500      1.62G      1.609      1.086      2.206         42        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.53it/s]
                   all         60        201       0.73      0.499      0.562      0.354

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    377/500      1.62G      1.616      1.054      2.216         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.92it/s]
                   all         60        201      0.742        0.5      0.565      0.344
EarlyStopping: Training stopped early as no improvement observed in last 100 epochs. Best results observed at epoch 277, best model saved as best.pt.
To update EarlyStopping(patience=100) pass a new patience value, i.e. `patience=300` or use `patience=0` to disable EarlyStopping.

377 epochs completed in 1.443 hours.
Optimizer stripped from runs/detect/train/weights/last.pt, 5.8MB
Optimizer stripped from runs/detect/train/weights/best.pt, 5.8MB

Validating runs/detect/train/weights/best.pt...
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
YOLOv10n summary (fused): 285 layers, 2,694,806 parameters, 0 gradients, 8.2 GFLOPs
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:06<00:00,  1.67s/it]
                   all         60        201      0.656      0.625      0.636      0.387
Speed: 4.4ms preprocess, 13.1ms inference, 0.0ms loss, 36.9ms postprocess per image
Results saved to runs/detect/train
Out[17]:
ultralytics.utils.metrics.DetMetrics object with attributes:

ap_class_index: array([0])
box: ultralytics.utils.metrics.Metric object
confusion_matrix: <ultralytics.utils.metrics.ConfusionMatrix object at 0x7f8a64c265c0>
curves: ['Precision-Recall(B)', 'F1-Confidence(B)', 'Precision-Confidence(B)', 'Recall-Confidence(B)']
curves_results: [[array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[          1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,
            0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,
            0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,
            0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,
            0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,     0.96552,
            0.96552,     0.96552,     0.93548,     0.93548,     0.93548,     0.93548,     0.93548,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,
            0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,
            0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,
            0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,
            0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,
            0.91228,     0.91228,     0.91228,     0.91228,     0.91228,     0.91228,         0.9,         0.9,         0.9,         0.9,         0.9,         0.9,         0.9,         0.9,         0.9,         0.9,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,
            0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,
            0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,
            0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,
            0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.89873,     0.88889,     0.88889,     0.88889,     0.88889,     0.88889,     0.88095,     0.88095,     0.88095,     0.88095,     0.88095,     0.88095,     0.88095,     0.88095,     0.88095,     0.88095,
            0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,
            0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,
            0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,     0.86139,      0.8381,      0.8381,      0.8381,      0.8381,
             0.8381,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,
            0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82456,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,     0.82203,
            0.80488,     0.80488,     0.80488,     0.80488,     0.80488,     0.80488,     0.80488,     0.80488,     0.80488,     0.80488,         0.8,         0.8,         0.8,         0.8,         0.8,     0.78462,     0.78462,     0.78462,     0.78462,     0.78462,     0.78462,     0.78462,     0.78462,
            0.78462,     0.78195,     0.78195,     0.78195,     0.78195,     0.78195,     0.78195,     0.78195,     0.78195,     0.78195,     0.78195,     0.77206,     0.77206,     0.77206,     0.77206,     0.77206,     0.75177,     0.75177,     0.75177,     0.75177,     0.75177,     0.74306,     0.74306,
            0.74306,     0.74306,     0.74306,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,        0.74,
            0.73684,     0.73684,     0.73684,     0.73684,     0.73684,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,      0.7205,
             0.7205,      0.7205,     0.70482,     0.70482,     0.70482,     0.70482,     0.70482,     0.68208,     0.68208,     0.68208,     0.68208,     0.68208,     0.67416,     0.67416,     0.67416,     0.67416,     0.67416,     0.67416,     0.67416,     0.67416,     0.67416,     0.67416,     0.67403,
            0.67403,     0.67403,     0.67403,     0.67403,     0.67403,     0.67403,     0.67403,     0.67403,     0.67403,     0.67213,     0.67213,     0.67213,     0.67213,     0.67213,     0.66138,     0.66138,     0.66138,     0.66138,     0.66138,     0.66138,     0.66138,     0.66138,     0.66138,
            0.66138,     0.65625,     0.65625,     0.65625,     0.65625,     0.65625,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,       0.645,     0.64039,     0.64039,
            0.64039,     0.64039,     0.64039,     0.62381,     0.62381,     0.62381,     0.62381,     0.62381,     0.60829,     0.60829,     0.60829,     0.60829,     0.60829,     0.59375,     0.59375,     0.59375,     0.59375,     0.59375,     0.58515,     0.58515,     0.58515,     0.58515,     0.57447,
            0.57447,     0.57447,     0.57447,     0.57447,     0.56846,     0.56846,     0.56846,     0.56846,     0.56846,     0.56846,     0.56846,     0.56846,     0.56846,     0.56846,     0.54724,     0.54724,     0.54724,     0.54724,     0.54724,     0.54724,     0.54724,     0.54724,     0.54724,
            0.54724,      0.5364,      0.5364,      0.5364,      0.5364,      0.5364,      0.5203,      0.5203,      0.5203,      0.5203,      0.5203,     0.50355,     0.50355,     0.50355,     0.50355,     0.50355,     0.48311,     0.48311,     0.48311,     0.48311,     0.48311,        0.48,        0.48,
               0.48,        0.48,        0.48,     0.46945,     0.46945,     0.46945,     0.46945,     0.46945,     0.46945,     0.46945,     0.46945,     0.46945,     0.46945,      0.3941,      0.3941,      0.3941,      0.3941,      0.3941,     0.38046,     0.38046,     0.38046,     0.38046,     0.38046,
            0.37157,     0.37157,     0.37157,     0.37157,     0.37157,     0.35377,     0.35377,     0.35377,     0.35377,     0.35377,     0.35116,     0.35116,     0.35116,     0.35116,     0.35116,     0.34467,     0.34467,     0.34467,     0.34467,     0.34467,     0.34152,     0.34152,     0.34152,
            0.34152,     0.34152,     0.29333,     0.29333,     0.29333,     0.29333,     0.29333,     0.27928,     0.27928,     0.27928,     0.27928,     0.27928,     0.27837,     0.27837,     0.27837,     0.27837,     0.27837,     0.27837,     0.27837,     0.27837,     0.27837,     0.27837,     0.24496,
            0.24496,     0.24496,     0.24496,     0.24496,     0.21992,     0.21992,     0.21992,     0.21992,     0.21992,     0.16667,     0.16667,     0.16667,     0.16667,     0.16667,     0.14024,     0.14024,     0.14024,     0.14024,     0.14024,     0.12994,     0.12928,     0.12863,     0.12797,
            0.12732,     0.12666,       0.126,     0.12535,     0.12469,     0.12403,     0.12338,     0.12272,     0.12207,     0.12141,     0.12075,      0.1201,     0.11944,     0.11878,     0.11813,     0.11747,     0.11682,     0.11616,      0.1155,     0.11485,     0.11419,     0.11353,     0.11288,
            0.11222,     0.11157,     0.11091,     0.11025,      0.1096,     0.10894,     0.10828,     0.10763,     0.10697,     0.10632,     0.10566,       0.105,     0.10435,     0.10369,     0.10303,     0.10238,     0.10172,     0.10107,     0.10041,    0.099753,    0.099096,     0.09844,    0.097784,
           0.097128,    0.096471,    0.095815,    0.095159,    0.094503,    0.093846,     0.09319,    0.092534,    0.091878,    0.091221,    0.090565,    0.089909,    0.089252,    0.088596,     0.08794,    0.087284,    0.086627,    0.085971,    0.085315,    0.084659,    0.084002,    0.083346,     0.08269,
           0.082034,    0.081377,    0.080721,    0.080065,    0.079408,    0.078752,    0.078096,     0.07744,    0.076783,    0.076127,    0.075471,    0.074815,    0.074158,    0.073502,    0.072846,    0.072189,    0.071533,    0.070877,    0.070221,    0.069564,    0.068908,    0.068252,    0.067596,
           0.066939,    0.066283,    0.065627,    0.064971,    0.064314,    0.063658,    0.063002,    0.062345,    0.061689,    0.061033,    0.060377,     0.05972,    0.059064,    0.058408,    0.057752,    0.057095,    0.056439,    0.055783,    0.055127,     0.05447,    0.053814,    0.053158,    0.052501,
           0.051845,    0.051189,    0.050533,    0.049876,     0.04922,    0.048564,    0.047908,    0.047251,    0.046595,    0.045939,    0.045282,    0.044626,     0.04397,    0.043314,    0.042657,    0.042001,    0.041345,    0.040689,    0.040032,    0.039376,     0.03872,    0.038064,    0.037407,
           0.036751,    0.036095,    0.035438,    0.034782,    0.034126,     0.03347,    0.032813,    0.032157,    0.031501,    0.030845,    0.030188,    0.029532,    0.028876,     0.02822,    0.027563,    0.026907,    0.026251,    0.025594,    0.024938,    0.024282,    0.023626,    0.022969,    0.022313,
           0.021657,    0.021001,    0.020344,    0.019688,    0.019032,    0.018376,    0.017719,    0.017063,    0.016407,     0.01575,    0.015094,    0.014438,    0.013782,    0.013125,    0.012469,    0.011813,    0.011157,      0.0105,    0.009844,   0.0091878,   0.0085315,   0.0078752,   0.0072189,
          0.0065627,   0.0059064,   0.0052501,   0.0045939,   0.0039376,   0.0032813,   0.0026251,   0.0019688,   0.0013125,  0.00065627,           0]]), 'Recall', 'Precision'], [array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[    0.22439,     0.22488,     0.31204,     0.35888,     0.38715,     0.40835,     0.42269,     0.44278,     0.45957,      0.4682,     0.47634,      0.4801,     0.48896,     0.49729,     0.50317,     0.51077,     0.51582,     0.52626,     0.52682,     0.53416,     0.53688,     0.54102,     0.54185,
            0.54428,     0.54917,     0.55426,     0.55975,     0.56165,     0.56546,     0.57028,     0.56619,      0.5706,     0.57349,     0.57261,     0.57423,     0.57532,     0.57274,      0.5732,     0.57365,     0.57759,     0.58341,     0.58444,     0.58577,     0.58681,     0.58646,      0.5865,
            0.58881,     0.59155,      0.5921,     0.59446,     0.59683,     0.59834,     0.59913,     0.60055,     0.60257,     0.60385,     0.60432,     0.60496,     0.60407,     0.60463,     0.60564,     0.60621,     0.60678,     0.60992,     0.61097,     0.60865,     0.60612,     0.60762,     0.60836,
            0.60967,     0.61189,     0.61232,     0.61274,     0.61623,     0.61908,     0.61828,     0.61641,     0.61463,     0.61372,     0.61391,      0.6141,     0.61428,     0.61447,     0.61466,     0.61485,     0.61504,     0.61795,     0.61905,     0.61717,     0.61627,     0.61656,     0.61686,
            0.61715,     0.61744,     0.61833,     0.61953,     0.62061,     0.62121,     0.62183,     0.62323,     0.62197,     0.62065,     0.62033,     0.62086,     0.62139,     0.62491,     0.62436,     0.62291,     0.62357,     0.62477,     0.62726,     0.62769,     0.62812,     0.62855,     0.62975,
            0.63042,      0.6309,     0.63137,     0.63046,     0.62846,     0.63007,     0.63036,     0.63065,     0.63094,     0.63123,     0.63341,     0.63594,     0.63658,     0.63721,     0.63518,     0.63765,     0.63818,     0.63872,     0.63899,      0.6392,     0.63941,     0.63961,     0.63982,
            0.64003,     0.64024,     0.64093,     0.64214,     0.64246,     0.64278,     0.64309,     0.64341,     0.64339,     0.64305,     0.64272,     0.64238,     0.64205,     0.64171,     0.64137,     0.64104,      0.6407,     0.64036,     0.64033,     0.64059,     0.64084,      0.6411,     0.64136,
            0.64161,     0.64202,     0.64279,     0.64328,     0.64276,     0.64225,     0.64173,     0.64122,      0.6407,     0.64019,     0.63959,     0.63894,     0.63829,     0.63764,     0.63699,     0.63567,     0.63333,     0.63452,     0.63662,     0.63693,     0.63724,     0.63754,     0.63785,
            0.63876,     0.64095,     0.64022,     0.63949,     0.63877,     0.63804,     0.63844,     0.63943,     0.63968,     0.63994,      0.6402,     0.64046,     0.64072,     0.64098,     0.64028,     0.63935,     0.63843,     0.63752,      0.6372,     0.63688,     0.63655,     0.63623,     0.63591,
            0.63558,     0.63526,     0.63494,     0.63461,     0.63429,     0.63405,     0.63421,     0.63437,     0.63452,     0.63468,     0.63484,       0.635,     0.63516,     0.63531,     0.63547,     0.63563,     0.63624,     0.63695,     0.63748,     0.63783,     0.63817,     0.63852,     0.63887,
            0.63918,     0.63948,     0.63977,     0.64007,     0.64037,     0.64054,     0.63991,     0.63928,     0.63865,     0.63801,     0.63738,     0.63727,     0.63765,     0.63803,     0.63841,     0.63869,     0.63824,      0.6378,     0.63736,     0.63691,     0.63647,     0.63602,     0.63558,
            0.63478,     0.63171,     0.63209,     0.63247,     0.63285,     0.63323,     0.63307,     0.63288,     0.63269,      0.6325,     0.63232,     0.63213,     0.63194,     0.63175,     0.63157,     0.63138,     0.63119,       0.631,     0.63081,     0.63063,     0.63044,     0.63025,     0.63006,
            0.62988,     0.62969,      0.6262,      0.6265,     0.62702,     0.62755,     0.62791,     0.62822,     0.62853,     0.62884,     0.62915,      0.6294,     0.62956,     0.62972,     0.62988,     0.63004,      0.6302,     0.63036,     0.63053,     0.63069,     0.63085,     0.63101,     0.63076,
            0.63049,     0.63021,     0.62994,     0.62967,     0.62939,     0.62912,     0.62885,     0.62857,      0.6283,     0.62803,     0.62775,     0.62748,     0.62746,     0.62769,     0.62791,     0.62813,     0.62836,     0.62858,      0.6288,     0.62902,     0.62919,     0.62936,     0.62952,
            0.62969,     0.62985,     0.63002,     0.63019,     0.63035,     0.63052,     0.63068,     0.63144,     0.63244,     0.63294,     0.63344,     0.63394,     0.63438,     0.63477,     0.63517,     0.63556,      0.6359,     0.63607,     0.63623,      0.6364,     0.63657,     0.63673,      0.6369,
            0.63706,     0.63723,     0.63739,     0.63756,     0.63735,     0.63701,     0.63666,     0.63631,     0.63597,     0.63562,     0.63527,     0.63493,     0.63458,     0.63423,     0.63389,     0.63403,     0.63417,     0.63432,     0.63447,     0.63462,     0.63477,     0.63492,     0.63507,
            0.63521,     0.63536,     0.63551,     0.63587,     0.63676,     0.63749,     0.63789,     0.63829,     0.63869,     0.63909,     0.63948,     0.63986,     0.64024,     0.64062,      0.6405,     0.63921,     0.63792,     0.63659,     0.63518,     0.63377,     0.63063,     0.62904,     0.62836,
            0.62767,     0.62699,     0.62631,     0.62577,     0.62642,     0.62708,     0.62999,     0.63102,     0.63109,     0.63116,     0.63124,     0.63131,     0.63138,     0.63145,     0.63153,      0.6316,     0.63167,     0.63174,     0.63182,     0.63189,     0.63196,     0.63203,     0.63211,
            0.63218,     0.63225,     0.63232,     0.63239,     0.63247,     0.63254,     0.63261,     0.63268,     0.63276,     0.63363,     0.63413,     0.63071,     0.63089,     0.63108,     0.63126,     0.63144,     0.63163,     0.63181,       0.632,     0.63218,     0.63236,     0.63234,     0.63197,
            0.63159,     0.63122,     0.63085,     0.63048,      0.6301,     0.62973,     0.62936,     0.62899,     0.62861,     0.62837,     0.62814,     0.62792,     0.62769,     0.62746,     0.62724,     0.62701,     0.62678,     0.62656,     0.62633,      0.6261,     0.62588,     0.62565,     0.62542,
            0.62519,     0.62497,     0.62474,     0.62387,     0.62252,     0.62117,     0.61938,     0.61734,      0.6169,     0.61716,     0.61742,     0.61768,     0.61794,      0.6182,     0.61846,     0.62009,     0.61977,     0.61918,     0.61859,     0.61801,     0.61742,     0.61683,     0.61629,
            0.61644,      0.6166,     0.61675,      0.6169,     0.61706,     0.61721,     0.61736,     0.61752,     0.61767,     0.61782,     0.61798,     0.61819,      0.6185,      0.6188,     0.61911,     0.61942,     0.61973,     0.61919,     0.61781,     0.61643,     0.61597,      0.6162,     0.61643,
            0.61667,      0.6169,     0.61713,     0.61736,     0.61759,     0.61837,      0.6193,     0.61998,     0.62061,     0.62123,     0.62143,     0.62158,     0.62172,     0.62187,     0.62201,     0.62216,     0.62231,     0.62245,      0.6226,     0.62274,     0.62289,     0.62303,     0.62309,
            0.62281,     0.62253,     0.62225,     0.62197,     0.62169,     0.62141,     0.62113,     0.62085,     0.62057,     0.62029,     0.62001,     0.61973,     0.61945,     0.61917,     0.61916,     0.61935,     0.61954,     0.61973,     0.61992,     0.62011,     0.62029,     0.62048,     0.62067,
            0.62086,     0.62102,     0.62117,     0.62133,     0.62148,     0.62163,     0.62178,     0.62194,     0.62209,     0.62224,     0.62239,     0.62255,      0.6227,     0.62257,     0.62226,     0.62196,     0.62166,     0.62136,     0.62105,     0.62075,     0.62045,     0.62015,     0.61984,
            0.61954,     0.61924,     0.61893,     0.61863,     0.61834,     0.61804,     0.61775,     0.61745,     0.61716,     0.61687,     0.61657,     0.61628,     0.61598,     0.61569,     0.61539,      0.6151,     0.61481,     0.61451,     0.61456,     0.61468,     0.61479,     0.61491,     0.61503,
            0.61515,     0.61527,     0.61539,     0.61551,     0.61563,     0.61575,     0.61587,     0.61598,      0.6161,     0.61622,     0.61541,     0.61111,     0.60797,     0.60822,     0.60848,     0.60873,     0.60898,     0.60924,     0.60949,     0.60974,     0.61179,     0.61198,     0.61216,
            0.61234,     0.61253,     0.61271,     0.61289,     0.61308,     0.61326,     0.61344,     0.61309,     0.61251,     0.61193,     0.61134,     0.61076,     0.61018,     0.60959,     0.60928,     0.60942,     0.60955,     0.60968,     0.60982,     0.60995,     0.61008,     0.61021,     0.61035,
            0.61048,     0.61061,     0.61075,     0.61088,     0.61101,     0.61095,     0.61027,      0.6096,     0.60892,     0.60824,     0.60756,     0.60688,     0.60593,     0.60495,     0.60396,     0.60297,     0.60346,     0.60445,     0.60462,     0.60479,     0.60496,     0.60513,     0.60529,
            0.60546,     0.60563,      0.6058,     0.60597,     0.60613,     0.60637,     0.60676,     0.60715,     0.60754,     0.60793,     0.60622,     0.60332,     0.60232,     0.60131,     0.60031,     0.59928,     0.59799,     0.59669,     0.59539,     0.59512,      0.5954,     0.59567,     0.59595,
            0.59623,      0.5965,     0.59678,     0.59082,     0.58675,     0.58366,     0.57794,       0.577,     0.57606,     0.57512,     0.57601,     0.57364,     0.57337,     0.57466,     0.57499,      0.5747,     0.57441,     0.57412,     0.57383,     0.57354,     0.57325,     0.57296,     0.57267,
            0.57238,     0.57209,      0.5718,     0.57151,     0.57122,     0.57093,     0.57064,     0.57069,     0.57107,     0.57146,     0.57184,     0.57223,     0.57318,     0.57447,     0.57577,     0.57554,     0.57466,     0.57378,      0.5729,     0.57202,     0.56647,      0.5659,     0.56532,
            0.56474,     0.56416,     0.56359,     0.56301,     0.56243,     0.55691,     0.55359,     0.55154,     0.55043,     0.54932,      0.5482,     0.54698,      0.5453,     0.54362,     0.54193,     0.54024,     0.53854,     0.53784,     0.53909,     0.53478,     0.53194,     0.52935,     0.52084,
            0.51876,     0.51821,     0.51766,      0.5171,     0.51655,     0.51599,     0.51544,     0.51488,     0.51433,     0.51409,     0.51501,     0.51584,     0.51646,     0.51708,     0.51764,     0.51811,     0.51857,     0.51904,     0.51901,     0.51834,     0.51768,     0.51701,     0.51634,
            0.51567,       0.515,     0.51433,      0.5124,      0.5097,     0.50946,     0.51039,     0.50801,     0.50632,     0.50664,       0.506,     0.50536,     0.50471,     0.50407,     0.50342,     0.50277,     0.50213,     0.50002,     0.49076,     0.48401,     0.48119,      0.4789,     0.47701,
            0.47511,     0.47258,     0.46972,     0.46299,     0.46264,     0.46229,     0.46193,     0.46158,     0.46123,     0.46088,     0.46053,     0.46017,     0.45982,     0.45947,     0.45912,     0.45876,     0.45841,     0.45806,      0.4577,     0.45521,     0.45161,     0.44993,     0.44825,
            0.44656,     0.44322,     0.44035,     0.44055,     0.44075,     0.44095,     0.44115,     0.44135,     0.44155,     0.44175,     0.44194,     0.44001,     0.43801,     0.43602,     0.43451,       0.433,     0.43149,      0.4301,     0.42946,     0.42882,     0.42818,     0.42754,     0.42689,
            0.42625,     0.42561,     0.42497,     0.42432,     0.42156,     0.41849,     0.41683,     0.41528,     0.41373,     0.41228,     0.40602,     0.40286,      0.3994,     0.38277,      0.3705,     0.36885,     0.36719,     0.36553,     0.35695,     0.35021,     0.33838,     0.33723,     0.33608,
            0.33494,     0.33379,     0.33263,     0.32215,      0.3196,     0.31795,     0.31618,     0.31441,     0.31269,     0.31167,     0.31065,     0.30963,     0.30861,     0.30759,     0.30656,     0.30232,     0.28973,     0.28345,     0.27976,     0.27479,     0.25997,     0.25466,     0.25297,
            0.25127,     0.24957,     0.24787,     0.24859,     0.24933,     0.24986,     0.24793,     0.24599,     0.24404,      0.2428,     0.23505,     0.23109,     0.21962,     0.21693,     0.21424,     0.21069,     0.20525,     0.20095,     0.19684,      0.1849,      0.1765,     0.17139,     0.17017,
            0.16896,     0.16774,     0.16653,     0.16531,     0.16409,     0.16002,     0.15428,      0.1485,     0.14584,      0.1445,     0.14315,     0.14181,     0.14046,     0.13911,     0.13182,     0.11568,     0.10465,    0.097638,    0.092919,    0.089838,    0.086748,    0.084478,    0.082924,
           0.081369,    0.079811,    0.078251,    0.076688,    0.074054,    0.070911,     0.06776,    0.066623,    0.065715,    0.064806,    0.063896,    0.062985,    0.062073,    0.061161,    0.060248,    0.059334,    0.058419,    0.053042,    0.038931,    0.036967,       0.035,    0.033029,    0.031054,
           0.028289,    0.021659,    0.018419,    0.016597,    0.014772,    0.012943,    0.011111,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0]]), 'Confidence', 'F1'], [array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[    0.13047,      0.1308,     0.19435,     0.23252,     0.25736,      0.2777,     0.29258,     0.31219,     0.32914,     0.33807,     0.34873,     0.35501,     0.36478,     0.37542,     0.38352,     0.39242,      0.3999,     0.41259,     0.41328,     0.42239,      0.4258,     0.43104,     0.43208,
            0.43519,     0.44148,     0.44809,     0.45531,     0.45783,     0.46292,     0.46941,     0.46804,     0.47411,     0.47811,     0.47912,     0.48138,     0.48303,     0.48159,     0.48223,     0.48287,     0.48848,     0.49686,     0.49836,      0.5003,     0.50182,     0.50262,      0.5039,
            0.50732,     0.51141,     0.51222,     0.51576,     0.51934,     0.52441,     0.52563,     0.52783,     0.53095,     0.53295,     0.53368,     0.53467,     0.53522,     0.53713,     0.53871,     0.53963,     0.54052,     0.54553,     0.54721,     0.54588,     0.54569,     0.54813,     0.54934,
            0.55148,     0.55513,     0.55582,     0.55652,      0.5623,     0.56707,     0.56753,     0.56645,     0.56543,     0.56499,     0.56531,     0.56563,     0.56595,     0.56627,     0.56659,     0.56691,     0.56724,      0.5722,      0.5741,     0.57326,     0.57295,     0.57346,     0.57397,
            0.57448,     0.57499,     0.57653,     0.57862,      0.5805,     0.58156,     0.58264,      0.5851,     0.58442,     0.58368,     0.58384,     0.58477,     0.58571,       0.592,      0.5929,     0.59242,      0.5936,     0.59578,     0.60034,     0.60113,     0.60192,      0.6027,      0.6049,
            0.60615,     0.60703,     0.60791,     0.60767,     0.60657,      0.6098,     0.61034,     0.61089,     0.61143,     0.61197,     0.61609,     0.62089,      0.6221,     0.62331,     0.62257,     0.62878,     0.62983,     0.63087,      0.6314,      0.6318,     0.63221,     0.63262,     0.63303,
            0.63343,     0.63384,      0.6352,     0.63758,     0.63821,     0.63883,     0.63946,     0.64009,      0.6403,     0.64012,     0.63995,     0.63977,     0.63959,     0.63941,     0.63923,     0.63906,     0.63888,      0.6387,     0.63888,     0.63939,      0.6399,     0.64041,     0.64092,
            0.64143,     0.64225,      0.6438,     0.64494,     0.64467,      0.6444,     0.64413,     0.64386,     0.64358,     0.64331,       0.643,     0.64265,     0.64231,     0.64197,     0.64162,     0.64092,     0.63968,     0.64236,     0.64668,     0.64732,     0.64795,     0.64859,     0.64922,
            0.65111,     0.65611,     0.65573,     0.65535,     0.65497,      0.6546,      0.6559,     0.65798,     0.65853,     0.65908,     0.65962,     0.66017,     0.66072,     0.66127,     0.66099,     0.66051,     0.66004,     0.65957,      0.6594,     0.65923,     0.65907,      0.6589,     0.65873,
            0.65856,      0.6584,     0.65823,     0.65806,     0.65789,     0.65781,     0.65816,      0.6585,     0.65884,     0.65918,     0.65952,     0.65986,      0.6602,     0.66054,     0.66088,     0.66123,     0.66254,     0.66408,     0.66524,       0.666,     0.66676,     0.66752,     0.66828,
            0.66896,     0.66961,     0.67026,     0.67091,     0.67156,     0.67209,     0.67177,     0.67145,     0.67113,     0.67081,     0.67048,     0.67077,     0.67161,     0.67245,      0.6733,       0.674,     0.67378,     0.67355,     0.67333,      0.6731,     0.67288,     0.67265,     0.67243,
            0.67202,     0.67069,     0.67155,     0.67241,     0.67326,     0.67412,     0.67407,     0.67397,     0.67387,     0.67378,     0.67368,     0.67359,     0.67349,      0.6734,      0.6733,     0.67321,     0.67311,     0.67301,     0.67292,     0.67282,     0.67273,     0.67263,     0.67254,
            0.67244,     0.67235,     0.67056,     0.67161,     0.67282,     0.67403,     0.67485,     0.67558,      0.6763,     0.67702,     0.67774,     0.67832,     0.67869,     0.67907,     0.67944,     0.67981,     0.68019,     0.68056,     0.68093,     0.68131,     0.68168,     0.68206,     0.68195,
            0.68181,     0.68168,     0.68154,      0.6814,     0.68126,     0.68113,     0.68099,     0.68085,     0.68071,     0.68057,     0.68044,      0.6803,     0.68051,     0.68103,     0.68156,     0.68208,     0.68261,     0.68314,     0.68366,     0.68419,     0.68459,     0.68498,     0.68537,
            0.68577,     0.68616,     0.68655,     0.68694,     0.68734,     0.68773,     0.68812,     0.68994,     0.69232,     0.69352,     0.69473,     0.69594,     0.69699,     0.69794,     0.69889,     0.69984,     0.70068,     0.70108,     0.70149,     0.70189,     0.70229,     0.70269,      0.7031,
             0.7035,      0.7039,      0.7043,      0.7047,      0.7047,     0.70453,     0.70437,      0.7042,     0.70403,     0.70387,      0.7037,     0.70353,     0.70337,      0.7032,     0.70303,     0.70339,     0.70376,     0.70412,     0.70449,     0.70486,     0.70522,     0.70559,     0.70595,
            0.70632,     0.70669,     0.70705,     0.70793,     0.71016,     0.71198,     0.71298,     0.71398,     0.71498,     0.71599,     0.71695,     0.71791,     0.71887,     0.71983,     0.72032,     0.71972,     0.71912,      0.7185,     0.71784,     0.71718,     0.71571,     0.71496,     0.71463,
            0.71431,     0.71399,     0.71366,     0.71356,     0.71526,     0.71697,     0.72462,     0.72736,     0.72755,     0.72775,     0.72794,     0.72813,     0.72832,     0.72852,     0.72871,      0.7289,      0.7291,     0.72929,     0.72948,     0.72967,     0.72987,     0.73006,     0.73025,
            0.73045,     0.73064,     0.73083,     0.73103,     0.73122,     0.73141,      0.7316,      0.7318,     0.73199,     0.73433,     0.73665,     0.73517,     0.73567,     0.73617,     0.73667,     0.73718,     0.73768,     0.73818,     0.73868,     0.73918,     0.73969,     0.73994,     0.73977,
             0.7396,     0.73944,     0.73927,     0.73911,     0.73894,     0.73877,     0.73861,     0.73844,     0.73827,     0.73816,     0.73806,     0.73796,     0.73786,     0.73776,     0.73765,     0.73755,     0.73745,     0.73735,     0.73725,     0.73714,     0.73704,     0.73694,     0.73684,
            0.73673,     0.73663,     0.73653,     0.73614,     0.73552,     0.73491,     0.73409,     0.73316,     0.73339,     0.73413,     0.73487,     0.73561,     0.73635,     0.73709,     0.73783,     0.74248,     0.74282,     0.74256,      0.7423,     0.74203,     0.74177,     0.74151,     0.74129,
            0.74173,     0.74218,     0.74262,     0.74307,     0.74352,     0.74396,     0.74441,     0.74485,      0.7453,     0.74574,     0.74619,      0.7468,      0.7477,     0.74861,     0.74951,     0.75042,     0.75132,     0.75147,     0.75086,     0.75026,      0.7504,     0.75109,     0.75178,
            0.75247,     0.75316,     0.75385,     0.75454,     0.75524,     0.75755,     0.76036,     0.76242,     0.76432,     0.76622,     0.76682,     0.76726,     0.76771,     0.76815,      0.7686,     0.76904,     0.76949,     0.76993,     0.77037,     0.77082,     0.77126,     0.77171,     0.77203,
            0.77192,      0.7718,     0.77169,     0.77157,     0.77146,     0.77134,     0.77123,     0.77111,       0.771,     0.77088,     0.77077,     0.77065,     0.77053,     0.77042,     0.77071,      0.7713,     0.77189,     0.77248,     0.77307,     0.77366,     0.77424,     0.77483,     0.77542,
            0.77601,     0.77651,     0.77699,     0.77747,     0.77795,     0.77843,      0.7789,     0.77938,     0.77986,     0.78034,     0.78082,      0.7813,     0.78177,     0.78188,     0.78176,     0.78164,     0.78152,      0.7814,     0.78127,     0.78115,     0.78103,     0.78091,     0.78079,
            0.78067,     0.78055,     0.78043,     0.78031,     0.78019,     0.78007,     0.77995,     0.77983,     0.77971,      0.7796,     0.77948,     0.77936,     0.77924,     0.77912,       0.779,     0.77888,     0.77877,     0.77865,     0.77894,     0.77932,     0.77971,     0.78009,     0.78048,
            0.78086,     0.78124,     0.78163,     0.78201,     0.78239,     0.78278,     0.78316,     0.78354,     0.78393,     0.78431,     0.78426,     0.78254,     0.78147,     0.78231,     0.78315,     0.78399,     0.78483,     0.78567,     0.78651,     0.78735,     0.79423,     0.79485,     0.79547,
            0.79609,     0.79671,     0.79733,     0.79795,     0.79857,     0.79919,     0.79981,     0.79985,     0.79963,     0.79941,     0.79918,     0.79896,     0.79874,     0.79852,     0.79856,     0.79902,     0.79948,     0.79994,      0.8004,     0.80086,     0.80132,     0.80177,     0.80223,
            0.80269,     0.80315,     0.80361,     0.80407,     0.80453,     0.80482,     0.80457,     0.80431,     0.80406,     0.80381,     0.80356,     0.80331,     0.80295,     0.80258,     0.80221,     0.80184,      0.8051,     0.80865,     0.80926,     0.80986,     0.81047,     0.81108,     0.81168,
            0.81229,     0.81289,      0.8135,      0.8141,     0.81471,     0.81556,     0.81698,      0.8184,     0.81981,     0.82123,     0.82136,     0.82035,        0.82,     0.81965,     0.81929,     0.81894,     0.81847,     0.81801,     0.81755,     0.81807,     0.81912,     0.82017,     0.82122,
            0.82227,     0.82332,     0.82437,     0.82247,     0.82103,     0.81994,     0.81788,     0.81753,     0.81719,     0.81685,     0.82406,     0.82322,     0.83054,     0.83595,     0.83804,     0.83794,     0.83784,     0.83775,     0.83765,     0.83755,     0.83746,     0.83736,     0.83726,
            0.83717,     0.83707,     0.83697,     0.83688,     0.83678,     0.83668,     0.83659,     0.83738,     0.83904,     0.84071,     0.84237,     0.84404,     0.84821,     0.85389,     0.85966,     0.86121,     0.86095,     0.86069,     0.86043,     0.86017,     0.85853,     0.85835,     0.85818,
            0.85801,     0.85783,     0.85766,     0.85748,     0.85731,     0.85563,      0.8546,     0.85396,     0.85361,     0.85326,     0.85292,     0.85253,     0.85199,     0.85146,     0.85092,     0.85037,     0.84983,     0.85158,     0.85789,     0.85731,     0.85641,      0.8556,     0.85286,
            0.85218,       0.852,     0.85182,     0.85163,     0.85145,     0.85127,     0.85109,      0.8509,     0.85072,     0.85166,     0.85673,     0.86137,     0.86483,     0.86829,     0.87148,     0.87414,     0.87679,     0.87945,     0.88087,     0.88069,     0.88051,     0.88032,     0.88014,
            0.87995,     0.87977,     0.87959,     0.87904,     0.87829,     0.88181,     0.88737,      0.8882,     0.89356,     0.89861,     0.89846,      0.8983,     0.89814,     0.89799,     0.89783,     0.89767,     0.89752,       0.897,     0.89468,     0.89294,      0.8922,      0.8916,     0.89109,
            0.89059,      0.8899,     0.88912,     0.88725,     0.88715,     0.88705,     0.88695,     0.88685,     0.88675,     0.88665,     0.88655,     0.88645,     0.88635,     0.88625,     0.88615,     0.88605,     0.88595,     0.88585,     0.88575,     0.88503,     0.88399,     0.88349,     0.88299,
            0.88249,     0.88148,     0.88102,     0.88263,     0.88424,     0.88585,     0.88746,     0.88907,     0.89068,     0.89228,     0.89389,      0.8934,     0.89284,     0.89229,     0.89186,     0.89143,     0.89099,      0.8906,     0.89041,     0.89022,     0.89004,     0.88985,     0.88966,
            0.88947,     0.88929,      0.8891,     0.88891,     0.88809,     0.88717,     0.88666,     0.88618,     0.88571,     0.88588,     0.89783,     0.89693,     0.91135,     0.90698,     0.90354,     0.90306,     0.90258,     0.90209,      0.8995,     0.89738,      0.8935,     0.89311,     0.89271,
            0.89232,     0.89192,     0.89153,     0.88776,     0.90582,     0.90642,     0.90586,     0.90529,     0.90474,      0.9044,     0.90406,     0.90372,     0.90338,     0.90304,      0.9027,     0.90123,      0.8967,     0.89431,     0.89286,     0.89085,     0.88446,     0.88204,     0.88123,
            0.88041,      0.8796,     0.87879,     0.89751,     0.91692,     0.93544,     0.93489,     0.93434,     0.93379,     0.94445,     0.96415,     0.96348,     0.96141,     0.96089,     0.96036,     0.95964,      0.9585,     0.95754,     0.95661,     0.95363,     0.95131,     0.94982,     0.94944,
            0.94905,     0.94867,     0.94828,      0.9479,     0.94751,      0.9461,     0.94407,     0.94183,     0.94077,     0.94019,     0.93961,     0.93903,     0.93845,     0.93787,     0.93439,     0.92528,     0.91765,     0.91188,     0.90766,     0.90455,     0.90144,     0.89898,     0.89709,
            0.89519,     0.89329,     0.89139,     0.88949,     0.88565,     0.88091,     0.87616,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1,
                  1,           1,           1,           1,           1,           1,           1,           1,           1,           1,           1]]), 'Confidence', 'Precision'], [array([          0,    0.001001,    0.002002,    0.003003,    0.004004,    0.005005,    0.006006,    0.007007,    0.008008,    0.009009,     0.01001,    0.011011,    0.012012,    0.013013,    0.014014,    0.015015,    0.016016,    0.017017,    0.018018,    0.019019,     0.02002,    0.021021,    0.022022,    0.023023,
          0.024024,    0.025025,    0.026026,    0.027027,    0.028028,    0.029029,     0.03003,    0.031031,    0.032032,    0.033033,    0.034034,    0.035035,    0.036036,    0.037037,    0.038038,    0.039039,     0.04004,    0.041041,    0.042042,    0.043043,    0.044044,    0.045045,    0.046046,    0.047047,
          0.048048,    0.049049,     0.05005,    0.051051,    0.052052,    0.053053,    0.054054,    0.055055,    0.056056,    0.057057,    0.058058,    0.059059,     0.06006,    0.061061,    0.062062,    0.063063,    0.064064,    0.065065,    0.066066,    0.067067,    0.068068,    0.069069,     0.07007,    0.071071,
          0.072072,    0.073073,    0.074074,    0.075075,    0.076076,    0.077077,    0.078078,    0.079079,     0.08008,    0.081081,    0.082082,    0.083083,    0.084084,    0.085085,    0.086086,    0.087087,    0.088088,    0.089089,     0.09009,    0.091091,    0.092092,    0.093093,    0.094094,    0.095095,
          0.096096,    0.097097,    0.098098,    0.099099,      0.1001,      0.1011,      0.1021,      0.1031,      0.1041,     0.10511,     0.10611,     0.10711,     0.10811,     0.10911,     0.11011,     0.11111,     0.11211,     0.11311,     0.11411,     0.11512,     0.11612,     0.11712,     0.11812,     0.11912,
           0.12012,     0.12112,     0.12212,     0.12312,     0.12412,     0.12513,     0.12613,     0.12713,     0.12813,     0.12913,     0.13013,     0.13113,     0.13213,     0.13313,     0.13413,     0.13514,     0.13614,     0.13714,     0.13814,     0.13914,     0.14014,     0.14114,     0.14214,     0.14314,
           0.14414,     0.14515,     0.14615,     0.14715,     0.14815,     0.14915,     0.15015,     0.15115,     0.15215,     0.15315,     0.15415,     0.15516,     0.15616,     0.15716,     0.15816,     0.15916,     0.16016,     0.16116,     0.16216,     0.16316,     0.16416,     0.16517,     0.16617,     0.16717,
           0.16817,     0.16917,     0.17017,     0.17117,     0.17217,     0.17317,     0.17417,     0.17518,     0.17618,     0.17718,     0.17818,     0.17918,     0.18018,     0.18118,     0.18218,     0.18318,     0.18418,     0.18519,     0.18619,     0.18719,     0.18819,     0.18919,     0.19019,     0.19119,
           0.19219,     0.19319,     0.19419,      0.1952,      0.1962,      0.1972,      0.1982,      0.1992,      0.2002,      0.2012,      0.2022,      0.2032,      0.2042,     0.20521,     0.20621,     0.20721,     0.20821,     0.20921,     0.21021,     0.21121,     0.21221,     0.21321,     0.21421,     0.21522,
           0.21622,     0.21722,     0.21822,     0.21922,     0.22022,     0.22122,     0.22222,     0.22322,     0.22422,     0.22523,     0.22623,     0.22723,     0.22823,     0.22923,     0.23023,     0.23123,     0.23223,     0.23323,     0.23423,     0.23524,     0.23624,     0.23724,     0.23824,     0.23924,
           0.24024,     0.24124,     0.24224,     0.24324,     0.24424,     0.24525,     0.24625,     0.24725,     0.24825,     0.24925,     0.25025,     0.25125,     0.25225,     0.25325,     0.25425,     0.25526,     0.25626,     0.25726,     0.25826,     0.25926,     0.26026,     0.26126,     0.26226,     0.26326,
           0.26426,     0.26527,     0.26627,     0.26727,     0.26827,     0.26927,     0.27027,     0.27127,     0.27227,     0.27327,     0.27427,     0.27528,     0.27628,     0.27728,     0.27828,     0.27928,     0.28028,     0.28128,     0.28228,     0.28328,     0.28428,     0.28529,     0.28629,     0.28729,
           0.28829,     0.28929,     0.29029,     0.29129,     0.29229,     0.29329,     0.29429,      0.2953,      0.2963,      0.2973,      0.2983,      0.2993,      0.3003,      0.3013,      0.3023,      0.3033,      0.3043,     0.30531,     0.30631,     0.30731,     0.30831,     0.30931,     0.31031,     0.31131,
           0.31231,     0.31331,     0.31431,     0.31532,     0.31632,     0.31732,     0.31832,     0.31932,     0.32032,     0.32132,     0.32232,     0.32332,     0.32432,     0.32533,     0.32633,     0.32733,     0.32833,     0.32933,     0.33033,     0.33133,     0.33233,     0.33333,     0.33433,     0.33534,
           0.33634,     0.33734,     0.33834,     0.33934,     0.34034,     0.34134,     0.34234,     0.34334,     0.34434,     0.34535,     0.34635,     0.34735,     0.34835,     0.34935,     0.35035,     0.35135,     0.35235,     0.35335,     0.35435,     0.35536,     0.35636,     0.35736,     0.35836,     0.35936,
           0.36036,     0.36136,     0.36236,     0.36336,     0.36436,     0.36537,     0.36637,     0.36737,     0.36837,     0.36937,     0.37037,     0.37137,     0.37237,     0.37337,     0.37437,     0.37538,     0.37638,     0.37738,     0.37838,     0.37938,     0.38038,     0.38138,     0.38238,     0.38338,
           0.38438,     0.38539,     0.38639,     0.38739,     0.38839,     0.38939,     0.39039,     0.39139,     0.39239,     0.39339,     0.39439,      0.3954,      0.3964,      0.3974,      0.3984,      0.3994,      0.4004,      0.4014,      0.4024,      0.4034,      0.4044,     0.40541,     0.40641,     0.40741,
           0.40841,     0.40941,     0.41041,     0.41141,     0.41241,     0.41341,     0.41441,     0.41542,     0.41642,     0.41742,     0.41842,     0.41942,     0.42042,     0.42142,     0.42242,     0.42342,     0.42442,     0.42543,     0.42643,     0.42743,     0.42843,     0.42943,     0.43043,     0.43143,
           0.43243,     0.43343,     0.43443,     0.43544,     0.43644,     0.43744,     0.43844,     0.43944,     0.44044,     0.44144,     0.44244,     0.44344,     0.44444,     0.44545,     0.44645,     0.44745,     0.44845,     0.44945,     0.45045,     0.45145,     0.45245,     0.45345,     0.45445,     0.45546,
           0.45646,     0.45746,     0.45846,     0.45946,     0.46046,     0.46146,     0.46246,     0.46346,     0.46446,     0.46547,     0.46647,     0.46747,     0.46847,     0.46947,     0.47047,     0.47147,     0.47247,     0.47347,     0.47447,     0.47548,     0.47648,     0.47748,     0.47848,     0.47948,
           0.48048,     0.48148,     0.48248,     0.48348,     0.48448,     0.48549,     0.48649,     0.48749,     0.48849,     0.48949,     0.49049,     0.49149,     0.49249,     0.49349,     0.49449,      0.4955,      0.4965,      0.4975,      0.4985,      0.4995,      0.5005,      0.5015,      0.5025,      0.5035,
            0.5045,     0.50551,     0.50651,     0.50751,     0.50851,     0.50951,     0.51051,     0.51151,     0.51251,     0.51351,     0.51451,     0.51552,     0.51652,     0.51752,     0.51852,     0.51952,     0.52052,     0.52152,     0.52252,     0.52352,     0.52452,     0.52553,     0.52653,     0.52753,
           0.52853,     0.52953,     0.53053,     0.53153,     0.53253,     0.53353,     0.53453,     0.53554,     0.53654,     0.53754,     0.53854,     0.53954,     0.54054,     0.54154,     0.54254,     0.54354,     0.54454,     0.54555,     0.54655,     0.54755,     0.54855,     0.54955,     0.55055,     0.55155,
           0.55255,     0.55355,     0.55455,     0.55556,     0.55656,     0.55756,     0.55856,     0.55956,     0.56056,     0.56156,     0.56256,     0.56356,     0.56456,     0.56557,     0.56657,     0.56757,     0.56857,     0.56957,     0.57057,     0.57157,     0.57257,     0.57357,     0.57457,     0.57558,
           0.57658,     0.57758,     0.57858,     0.57958,     0.58058,     0.58158,     0.58258,     0.58358,     0.58458,     0.58559,     0.58659,     0.58759,     0.58859,     0.58959,     0.59059,     0.59159,     0.59259,     0.59359,     0.59459,      0.5956,      0.5966,      0.5976,      0.5986,      0.5996,
            0.6006,      0.6016,      0.6026,      0.6036,      0.6046,     0.60561,     0.60661,     0.60761,     0.60861,     0.60961,     0.61061,     0.61161,     0.61261,     0.61361,     0.61461,     0.61562,     0.61662,     0.61762,     0.61862,     0.61962,     0.62062,     0.62162,     0.62262,     0.62362,
           0.62462,     0.62563,     0.62663,     0.62763,     0.62863,     0.62963,     0.63063,     0.63163,     0.63263,     0.63363,     0.63463,     0.63564,     0.63664,     0.63764,     0.63864,     0.63964,     0.64064,     0.64164,     0.64264,     0.64364,     0.64464,     0.64565,     0.64665,     0.64765,
           0.64865,     0.64965,     0.65065,     0.65165,     0.65265,     0.65365,     0.65465,     0.65566,     0.65666,     0.65766,     0.65866,     0.65966,     0.66066,     0.66166,     0.66266,     0.66366,     0.66466,     0.66567,     0.66667,     0.66767,     0.66867,     0.66967,     0.67067,     0.67167,
           0.67267,     0.67367,     0.67467,     0.67568,     0.67668,     0.67768,     0.67868,     0.67968,     0.68068,     0.68168,     0.68268,     0.68368,     0.68468,     0.68569,     0.68669,     0.68769,     0.68869,     0.68969,     0.69069,     0.69169,     0.69269,     0.69369,     0.69469,      0.6957,
            0.6967,      0.6977,      0.6987,      0.6997,      0.7007,      0.7017,      0.7027,      0.7037,      0.7047,     0.70571,     0.70671,     0.70771,     0.70871,     0.70971,     0.71071,     0.71171,     0.71271,     0.71371,     0.71471,     0.71572,     0.71672,     0.71772,     0.71872,     0.71972,
           0.72072,     0.72172,     0.72272,     0.72372,     0.72472,     0.72573,     0.72673,     0.72773,     0.72873,     0.72973,     0.73073,     0.73173,     0.73273,     0.73373,     0.73473,     0.73574,     0.73674,     0.73774,     0.73874,     0.73974,     0.74074,     0.74174,     0.74274,     0.74374,
           0.74474,     0.74575,     0.74675,     0.74775,     0.74875,     0.74975,     0.75075,     0.75175,     0.75275,     0.75375,     0.75475,     0.75576,     0.75676,     0.75776,     0.75876,     0.75976,     0.76076,     0.76176,     0.76276,     0.76376,     0.76476,     0.76577,     0.76677,     0.76777,
           0.76877,     0.76977,     0.77077,     0.77177,     0.77277,     0.77377,     0.77477,     0.77578,     0.77678,     0.77778,     0.77878,     0.77978,     0.78078,     0.78178,     0.78278,     0.78378,     0.78478,     0.78579,     0.78679,     0.78779,     0.78879,     0.78979,     0.79079,     0.79179,
           0.79279,     0.79379,     0.79479,      0.7958,      0.7968,      0.7978,      0.7988,      0.7998,      0.8008,      0.8018,      0.8028,      0.8038,      0.8048,     0.80581,     0.80681,     0.80781,     0.80881,     0.80981,     0.81081,     0.81181,     0.81281,     0.81381,     0.81481,     0.81582,
           0.81682,     0.81782,     0.81882,     0.81982,     0.82082,     0.82182,     0.82282,     0.82382,     0.82482,     0.82583,     0.82683,     0.82783,     0.82883,     0.82983,     0.83083,     0.83183,     0.83283,     0.83383,     0.83483,     0.83584,     0.83684,     0.83784,     0.83884,     0.83984,
           0.84084,     0.84184,     0.84284,     0.84384,     0.84484,     0.84585,     0.84685,     0.84785,     0.84885,     0.84985,     0.85085,     0.85185,     0.85285,     0.85385,     0.85485,     0.85586,     0.85686,     0.85786,     0.85886,     0.85986,     0.86086,     0.86186,     0.86286,     0.86386,
           0.86486,     0.86587,     0.86687,     0.86787,     0.86887,     0.86987,     0.87087,     0.87187,     0.87287,     0.87387,     0.87487,     0.87588,     0.87688,     0.87788,     0.87888,     0.87988,     0.88088,     0.88188,     0.88288,     0.88388,     0.88488,     0.88589,     0.88689,     0.88789,
           0.88889,     0.88989,     0.89089,     0.89189,     0.89289,     0.89389,     0.89489,      0.8959,      0.8969,      0.8979,      0.8989,      0.8999,      0.9009,      0.9019,      0.9029,      0.9039,      0.9049,     0.90591,     0.90691,     0.90791,     0.90891,     0.90991,     0.91091,     0.91191,
           0.91291,     0.91391,     0.91491,     0.91592,     0.91692,     0.91792,     0.91892,     0.91992,     0.92092,     0.92192,     0.92292,     0.92392,     0.92492,     0.92593,     0.92693,     0.92793,     0.92893,     0.92993,     0.93093,     0.93193,     0.93293,     0.93393,     0.93493,     0.93594,
           0.93694,     0.93794,     0.93894,     0.93994,     0.94094,     0.94194,     0.94294,     0.94394,     0.94494,     0.94595,     0.94695,     0.94795,     0.94895,     0.94995,     0.95095,     0.95195,     0.95295,     0.95395,     0.95495,     0.95596,     0.95696,     0.95796,     0.95896,     0.95996,
           0.96096,     0.96196,     0.96296,     0.96396,     0.96496,     0.96597,     0.96697,     0.96797,     0.96897,     0.96997,     0.97097,     0.97197,     0.97297,     0.97397,     0.97497,     0.97598,     0.97698,     0.97798,     0.97898,     0.97998,     0.98098,     0.98198,     0.98298,     0.98398,
           0.98498,     0.98599,     0.98699,     0.98799,     0.98899,     0.98999,     0.99099,     0.99199,     0.99299,     0.99399,     0.99499,       0.996,       0.997,       0.998,       0.999,           1]), array([[      0.801,       0.801,     0.79104,     0.78607,     0.78109,     0.77114,     0.76119,     0.76119,     0.76119,     0.76119,     0.75124,     0.74129,     0.74129,     0.73632,     0.73134,     0.73134,     0.72637,     0.72637,     0.72637,     0.72637,     0.72637,     0.72637,     0.72637,
            0.72637,     0.72637,     0.72637,     0.72637,     0.72637,     0.72637,     0.72637,     0.71642,     0.71642,     0.71642,     0.71144,     0.71144,     0.71121,     0.70647,     0.70647,     0.70647,     0.70647,     0.70647,     0.70647,     0.70647,     0.70647,     0.70387,     0.70149,
            0.70149,     0.70149,     0.70149,     0.70149,     0.70149,     0.69652,     0.69652,     0.69652,     0.69652,     0.69652,     0.69652,     0.69652,     0.69324,     0.69154,     0.69154,     0.69154,     0.69154,     0.69154,     0.69154,     0.68775,     0.68159,     0.68159,     0.68159,
            0.68159,     0.68159,     0.68159,     0.68159,     0.68159,     0.68159,     0.67901,     0.67603,     0.67321,     0.67164,     0.67164,     0.67164,     0.67164,     0.67164,     0.67164,     0.67164,     0.67164,     0.67164,     0.67164,     0.66835,     0.66667,     0.66667,     0.66667,
            0.66667,     0.66667,     0.66667,     0.66667,     0.66667,     0.66667,     0.66667,     0.66667,     0.66467,     0.66263,     0.66169,     0.66169,     0.66169,     0.66169,     0.65936,     0.65672,     0.65672,     0.65672,     0.65672,     0.65672,     0.65672,     0.65672,     0.65672,
            0.65672,     0.65672,     0.65672,     0.65501,     0.65199,     0.65174,     0.65174,     0.65174,     0.65174,     0.65174,     0.65174,     0.65174,     0.65174,     0.65174,     0.64831,     0.64677,     0.64677,     0.64677,     0.64677,     0.64677,     0.64677,     0.64677,     0.64677,
            0.64677,     0.64677,     0.64677,     0.64677,     0.64677,     0.64677,     0.64677,     0.64677,     0.64651,     0.64601,     0.64551,     0.64502,     0.64452,     0.64402,     0.64352,     0.64303,     0.64253,     0.64203,     0.64179,     0.64179,     0.64179,     0.64179,     0.64179,
            0.64179,     0.64179,     0.64179,     0.64162,     0.64087,     0.64011,     0.63936,      0.6386,     0.63784,     0.63709,     0.63621,     0.63526,     0.63431,     0.63336,     0.63242,      0.6305,      0.6271,     0.62687,     0.62687,     0.62687,     0.62687,     0.62687,     0.62687,
            0.62687,     0.62648,     0.62543,     0.62439,     0.62334,     0.62229,     0.62189,     0.62189,     0.62189,     0.62189,     0.62189,     0.62189,     0.62189,     0.62189,     0.62082,     0.61951,     0.61819,      0.6169,     0.61644,     0.61599,     0.61553,     0.61507,     0.61461,
            0.61415,     0.61369,     0.61323,     0.61278,     0.61232,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61194,
            0.61194,     0.61194,     0.61194,     0.61194,     0.61194,     0.61183,     0.61094,     0.61005,     0.60917,     0.60828,     0.60739,     0.60697,     0.60697,     0.60697,     0.60697,     0.60689,     0.60627,     0.60565,     0.60503,     0.60441,      0.6038,     0.60318,     0.60256,
            0.60145,     0.59701,     0.59701,     0.59701,     0.59701,     0.59701,     0.59677,     0.59651,     0.59625,     0.59599,     0.59573,     0.59548,     0.59522,     0.59496,      0.5947,     0.59444,     0.59419,     0.59393,     0.59367,     0.59341,     0.59315,     0.59289,     0.59264,
            0.59238,     0.59212,     0.58735,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58706,     0.58672,
            0.58635,     0.58598,     0.58561,     0.58523,     0.58486,     0.58449,     0.58412,     0.58375,     0.58338,     0.58301,     0.58264,     0.58227,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,
            0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,     0.58209,
            0.58209,     0.58209,     0.58209,     0.58209,     0.58176,     0.58129,     0.58083,     0.58037,      0.5799,     0.57944,     0.57898,     0.57851,     0.57805,     0.57759,     0.57712,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,
            0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,     0.57711,      0.5766,      0.5749,      0.5732,     0.57144,     0.56959,     0.56773,     0.56363,     0.56155,     0.56067,
            0.55978,     0.55889,     0.55801,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,
            0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55721,     0.55666,     0.55224,     0.55224,     0.55224,     0.55224,     0.55224,     0.55224,     0.55224,     0.55224,     0.55224,     0.55224,     0.55206,     0.55159,
            0.55111,     0.55064,     0.55016,     0.54969,     0.54921,     0.54874,     0.54827,     0.54779,     0.54732,     0.54701,     0.54672,     0.54643,     0.54615,     0.54586,     0.54557,     0.54528,       0.545,     0.54471,     0.54442,     0.54414,     0.54385,     0.54356,     0.54327,
            0.54299,      0.5427,     0.54241,     0.54132,     0.53962,     0.53792,     0.53567,     0.53312,     0.53234,     0.53234,     0.53234,     0.53234,     0.53234,     0.53234,     0.53234,     0.53234,     0.53169,     0.53096,     0.53023,      0.5295,     0.52878,     0.52805,     0.52736,
            0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52736,     0.52651,     0.52481,     0.52311,     0.52239,     0.52239,     0.52239,
            0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52239,     0.52232,
            0.52198,     0.52164,      0.5213,     0.52096,     0.52062,     0.52028,     0.51994,      0.5196,     0.51926,     0.51892,     0.51858,     0.51824,      0.5179,     0.51756,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,
            0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51741,     0.51719,     0.51682,     0.51646,     0.51609,     0.51573,     0.51536,       0.515,     0.51464,     0.51427,     0.51391,
            0.51354,     0.51318,     0.51281,     0.51245,      0.5121,     0.51175,     0.51139,     0.51104,     0.51069,     0.51034,     0.50999,     0.50964,     0.50928,     0.50893,     0.50858,     0.50823,     0.50788,     0.50753,     0.50746,     0.50746,     0.50746,     0.50746,     0.50746,
            0.50746,     0.50746,     0.50746,     0.50746,     0.50746,     0.50746,     0.50746,     0.50746,     0.50746,     0.50746,     0.50639,     0.50129,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,
            0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49751,     0.49704,     0.49636,     0.49568,       0.495,     0.49432,     0.49364,     0.49296,     0.49254,     0.49254,     0.49254,     0.49254,     0.49254,     0.49254,     0.49254,     0.49254,     0.49254,
            0.49254,     0.49254,     0.49254,     0.49254,     0.49254,     0.49235,     0.49157,     0.49078,        0.49,     0.48921,     0.48843,     0.48765,     0.48655,     0.48542,     0.48428,     0.48315,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,
            0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48259,     0.48039,      0.4771,     0.47596,     0.47483,      0.4737,     0.47254,     0.47108,     0.46963,     0.46817,     0.46766,     0.46766,     0.46766,     0.46766,
            0.46766,     0.46766,     0.46766,     0.46098,     0.45649,     0.45309,     0.44685,     0.44583,     0.44481,     0.44379,     0.44274,     0.44019,     0.43781,     0.43781,     0.43762,     0.43732,     0.43701,      0.4367,     0.43639,     0.43608,     0.43577,     0.43546,     0.43515,
            0.43484,     0.43453,     0.43422,     0.43392,     0.43361,      0.4333,     0.43299,     0.43284,     0.43284,     0.43284,     0.43284,     0.43284,     0.43284,     0.43284,     0.43284,     0.43219,     0.43126,     0.43033,      0.4294,     0.42848,     0.42268,     0.42208,     0.42148,
            0.42088,     0.42028,     0.41968,     0.41908,     0.41848,     0.41279,     0.40939,      0.4073,     0.40617,     0.40504,      0.4039,     0.40266,     0.40096,     0.39926,     0.39756,     0.39586,     0.39416,     0.39303,     0.39303,     0.38859,     0.38577,     0.38322,      0.3749,
            0.37288,     0.37234,      0.3718,     0.37127,     0.37073,     0.37019,     0.36965,     0.36912,     0.36858,     0.36816,     0.36816,     0.36816,     0.36816,     0.36816,     0.36816,     0.36816,     0.36816,     0.36816,     0.36788,     0.36725,     0.36661,     0.36597,     0.36533,
             0.3647,     0.36406,     0.36342,     0.36158,     0.35903,     0.35821,     0.35821,     0.35574,     0.35323,     0.35277,     0.35217,     0.35157,     0.35097,     0.35037,     0.34977,     0.34917,     0.34857,     0.34662,     0.33811,     0.33198,     0.32943,     0.32737,     0.32567,
            0.32397,     0.32172,     0.31917,     0.31322,     0.31291,      0.3126,     0.31229,     0.31198,     0.31167,     0.31136,     0.31105,     0.31074,     0.31043,     0.31012,     0.30982,     0.30951,      0.3092,     0.30889,     0.30858,      0.3064,     0.30328,     0.30182,     0.30036,
             0.2989,     0.29603,     0.29353,     0.29353,     0.29353,     0.29353,     0.29353,     0.29353,     0.29353,     0.29353,     0.29353,     0.29188,     0.29018,      0.2885,     0.28723,     0.28595,     0.28468,     0.28351,     0.28297,     0.28243,      0.2819,     0.28136,     0.28082,
            0.28028,     0.27975,     0.27921,     0.27867,     0.27638,     0.27383,     0.27245,     0.27118,      0.2699,     0.26866,     0.26232,     0.25977,     0.25574,     0.24257,     0.23303,     0.23175,     0.23048,      0.2292,     0.22265,     0.21755,     0.20871,     0.20786,     0.20701,
            0.20616,     0.20531,     0.20446,     0.19678,     0.19403,     0.19279,     0.19151,     0.19024,       0.189,     0.18827,     0.18755,     0.18682,     0.18609,     0.18536,     0.18463,     0.18162,     0.17277,     0.16841,     0.16586,     0.16245,     0.15238,     0.14881,     0.14768,
            0.14655,     0.14541,     0.14428,     0.14428,     0.14428,     0.14419,     0.14291,     0.14164,     0.14036,      0.1393,     0.13384,     0.13129,     0.12397,     0.12227,     0.12057,     0.11833,     0.11493,     0.11226,     0.10971,     0.10237,    0.097274,    0.094191,    0.093463,
           0.092734,    0.092006,    0.091277,    0.090549,     0.08982,    0.087402,    0.084003,    0.080603,    0.079048,    0.078264,    0.077479,    0.076695,     0.07591,    0.075126,    0.070912,    0.061697,    0.055488,    0.051581,    0.048966,    0.047266,    0.045566,    0.044321,    0.043471,
           0.042621,    0.041771,    0.040922,    0.040072,    0.038642,    0.036942,    0.035243,    0.034459,    0.033974,    0.033488,    0.033002,    0.032517,    0.032031,    0.031545,    0.031059,    0.030574,    0.030088,    0.027244,    0.019852,    0.018832,    0.017812,    0.016792,    0.015772,
           0.014348,    0.010948,   0.0092951,   0.0083679,   0.0074407,   0.0065135,   0.0055863,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0,
                  0,           0,           0,           0,           0,           0,           0,           0,           0,           0,           0]]), 'Confidence', 'Recall']]
fitness: 0.41191347622444213
keys: ['metrics/precision(B)', 'metrics/recall(B)', 'metrics/mAP50(B)', 'metrics/mAP50-95(B)']
maps: array([    0.38698])
names: {0: 'Pothole'}
plot: True
results_dict: {'metrics/precision(B)': 0.6557314337091824, 'metrics/recall(B)': 0.625432167720725, 'metrics/mAP50(B)': 0.6362925017049677, 'metrics/mAP50-95(B)': 0.38698247339327263, 'fitness': 0.41191347622444213}
save_dir: PosixPath('runs/detect/train')
speed: {'preprocess': 4.436540603637695, 'inference': 13.0781888961792, 'loss': 0.0007271766662597656, 'postprocess': 36.858514944712326}
task: 'detect'

v10_u_trained_500 predict¶

In [22]:
#testing  {prev 25 112eph}
model_u_trained_500=YOLO("runs/detect/v10n_u_trained_500_train/weights/best.pt")
results=model_u_trained_500("img1.jpg")
results[0].show()
image 1/1 /mnt/d/workspace/Pothole/img1.jpg: 640x640 8 Potholes, 30.8ms
Speed: 7.9ms preprocess, 30.8ms inference, 5.3ms postprocess per image at shape (1, 3, 640, 640)
No description has been provided for this image

v10n_u_trained_500_predict¶

In [23]:
#predicting all val
#stored in v10n_u_trained_500_predict
!yolo task= detect mode=predict conf=0.4 save=True model=runs/detect/v10n_u_trained_500_train/weights/best.pt source=dataset/valid/images
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
YOLOv10n summary (fused): 285 layers, 2,694,806 parameters, 0 gradients, 8.2 GFLOPs

image 1/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-114-_jpg.rf.a0f30e06b3b96d7879d5f55a7012433c.jpg: 640x640 1 Pothole, 9.0ms
image 2/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-116-_jpg.rf.ddcb9d0e0bcf2a1a5096c4f04e6b7f9e.jpg: 640x640 9 Potholes, 8.7ms
image 3/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-123-_jpg.rf.385ae3fbcdabda81f72ddf11f6a4b93d.jpg: 640x640 3 Potholes, 11.0ms
image 4/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-125-_jpg.rf.3d316e9144cb7438021e01065de91057.jpg: 640x640 9 Potholes, 7.9ms
image 5/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-129-_jpg.rf.d307956eee8ac32fbe793335e87c7b67.jpg: 640x640 2 Potholes, 8.1ms
image 6/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-140-_jpg.rf.430bfe74decf2b904377d127914f2092.jpg: 640x640 1 Pothole, 7.0ms
image 7/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-144-_jpg.rf.61a3b886f058ed3a4788426cfa7c4988.jpg: 640x640 1 Pothole, 9.0ms
image 8/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-151-_jpg.rf.45a82558c583efe9dda4ea02e294595a.jpg: 640x640 2 Potholes, 10.4ms
image 9/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-152-_jpg.rf.510fb0040c8523bb66ec10b0fe67b4b4.jpg: 640x640 10 Potholes, 11.1ms
image 10/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-154-_jpg.rf.a9e6b534da24b1c1815902210ab23be9.jpg: 640x640 1 Pothole, 8.7ms
image 11/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-157-_jpg.rf.2247b000d655232fbf8a58b5add102ca.jpg: 640x640 10 Potholes, 8.4ms
image 12/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-161-_jpg.rf.1cff77d21f54b7ed9234e896abcf0f5b.jpg: 640x640 3 Potholes, 8.3ms
image 13/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-165-_jpg.rf.82b3db37518b15aa73be6e4093deaf46.jpg: 640x640 1 Pothole, 9.9ms
image 14/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-17-_jpg.rf.0d172b6accedf4c52a3868d9b690d48b.jpg: 640x640 1 Pothole, 9.0ms
image 15/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-173-_jpg.rf.73512294c1b7b5c500eac27a0fb669f7.jpg: 640x640 1 Pothole, 6.6ms
image 16/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-175-_jpg.rf.9fc746d4865c11f38047cf383baa30a6.jpg: 640x640 2 Potholes, 6.9ms
image 17/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-178-_jpg.rf.2e27d006aec1544f1eec88d9170fd6ce.jpg: 640x640 1 Pothole, 15.4ms
image 18/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-183-_jpg.rf.277cfed19f046acc63dc9640b239f1df.jpg: 640x640 1 Pothole, 8.3ms
image 19/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-184-_jpg.rf.cb753b5f714073fc4a8c2de602386399.jpg: 640x640 6 Potholes, 9.4ms
image 20/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-192-_jpg.rf.e0b55409488785e7156677026d372c23.jpg: 640x640 1 Pothole, 11.5ms
image 21/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-193-_jpg.rf.4520ff34079afc8e9f9b50a633c08876.jpg: 640x640 1 Pothole, 9.0ms
image 22/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-20-_jpg.rf.4b34591f154f226347c9ca9dfb33b2e4.jpg: 640x640 2 Potholes, 6.8ms
image 23/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-202-_jpg.rf.8c64ec46a9e120007c12c2e4841c9555.jpg: 640x640 1 Pothole, 7.0ms
image 24/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-204-_jpg.rf.c3990b25e295bfd6b4605c6305cce37c.jpg: 640x640 5 Potholes, 8.6ms
image 25/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-205-_jpg.rf.cf4be807bced55552b98c208585d2c56.jpg: 640x640 2 Potholes, 6.9ms
image 26/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-209-_jpg.rf.533a84bcc43e29e16c0f80069ee7f8df.jpg: 640x640 1 Pothole, 6.5ms
image 27/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-22-_jpg.rf.aec225ee7ab2b5f7791d6579b213600b.jpg: 640x640 1 Pothole, 6.8ms
image 28/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-225-_jpg.rf.38cc0deddb897c98814f644451130bb7.jpg: 640x640 1 Pothole, 8.3ms
image 29/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-228-_jpg.rf.4dcc6aa7dfc0c9a59a7f033e2ed12413.jpg: 640x640 1 Pothole, 13.3ms
image 30/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-230-_jpg.rf.ffe557c4b95e23f1a4323cf7768060f2.jpg: 640x640 4 Potholes, 6.9ms
image 31/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-236-_jpg.rf.34f38065b7233d8b9c03b746ffc9a780.jpg: 640x640 1 Pothole, 7.0ms
image 32/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-254-_jpg.rf.2b5c3b2efce3960f4f29319ebaa1d220.jpg: 640x640 1 Pothole, 6.6ms
image 33/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-257-_jpg.rf.09cb9983a70f1bd7ba096c252b64f909.jpg: 640x640 1 Pothole, 8.6ms
image 34/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-262-_jpg.rf.02970860794f859699c9f743bc0fd7d1.jpg: 640x640 1 Pothole, 7.7ms
image 35/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-263-_jpg.rf.47073e3fbc426b15c3caa7e8daa66719.jpg: 640x640 1 Pothole, 6.9ms
image 36/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-269-_jpg.rf.196b54c0db633b6b02612f69072abb99.jpg: 640x640 (no detections), 8.5ms
image 37/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-27-_jpg.rf.b4cd8eb26d6941eabfc17280f03bca69.jpg: 640x640 4 Potholes, 7.1ms
image 38/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-270-_jpg.rf.2a0793533346a7355bbeb34291b4a067.jpg: 640x640 2 Potholes, 10.2ms
image 39/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-271-_jpg.rf.0210435cf32159dca447e61250afb67f.jpg: 640x640 3 Potholes, 10.8ms
image 40/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-273-_jpg.rf.36d10c68fb23799bd0a58e48e0b995ce.jpg: 640x640 1 Pothole, 8.6ms
image 41/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-28-_jpg.rf.fe8316c392940899d9211be3305c9ab6.jpg: 640x640 (no detections), 7.1ms
image 42/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-288-_jpg.rf.26f8da57a5a023907e5e061dbd0a5632.jpg: 640x640 1 Pothole, 8.7ms
image 43/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-290-_jpg.rf.bcf58ab867c40a607759aec5666fece4.jpg: 640x640 9 Potholes, 6.8ms
image 44/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-292-_jpg.rf.f3d0a40ac5190529f4dd4886d6f5e5d0.jpg: 640x640 1 Pothole, 8.3ms
image 45/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-303-_jpg.rf.236ed95889a91baf47b304faa7cbae01.jpg: 640x640 1 Pothole, 6.9ms
image 46/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-308-_jpg.rf.8f5b6dc0b616365d05bce17bf30eff39.jpg: 640x640 2 Potholes, 8.5ms
image 47/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-33-_jpg.rf.143c56d136e3245555b26b4d5108a4e1.jpg: 640x640 4 Potholes, 13.9ms
image 48/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-36-_jpg.rf.13a668c4003681c4631508465eef5a9f.jpg: 640x640 2 Potholes, 7.4ms
image 49/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-42-_jpg.rf.28b626ac5e887c92feeed1a3c5e85b64.jpg: 640x640 2 Potholes, 7.0ms
image 50/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-45-_jpg.rf.8e102a986584d47797dc92558c2af624.jpg: 640x640 1 Pothole, 6.7ms
image 51/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-50-_jpg.rf.cb41506e84f6cac629bd55e40e329834.jpg: 640x640 (no detections), 8.5ms
image 52/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-58-_jpg.rf.8f585bdabd7d6e5b0285121867659f37.jpg: 640x640 1 Pothole, 7.1ms
image 53/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-60-_jpg.rf.4e715308cc8dc7455b767414cda028ab.jpg: 640x640 2 Potholes, 9.8ms
image 54/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-61-_jpg.rf.72ad391fcf2334c24de5ed48dda25001.jpg: 640x640 1 Pothole, 7.0ms
image 55/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-67-_jpg.rf.663b4f930bb764609355101fbce07ab1.jpg: 640x640 1 Pothole, 8.7ms
image 56/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-69-_jpg.rf.0fcb6cd22beb140d931a387036b7eab6.jpg: 640x640 12 Potholes, 9.1ms
image 57/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-72-_jpg.rf.82c8314917ff5284106bd3428cff5792.jpg: 640x640 1 Pothole, 7.5ms
image 58/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-88-_jpg.rf.1cb5c1768861244cf01d2c5691bb3e08.jpg: 640x640 3 Potholes, 8.2ms
image 59/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-95-_jpg.rf.eca25439e9e1dd31f29df105f4faa122.jpg: 640x640 4 Potholes, 10.2ms
image 60/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-99-_jpg.rf.28d287fa96c09a12f2511e1b4df7e5a1.jpg: 640x640 2 Potholes, 9.7ms
Speed: 1.2ms preprocess, 8.6ms inference, 0.5ms postprocess per image at shape (1, 3, 640, 640)
Results saved to runs/detect/predict
💡 Learn more at https://docs.ultralytics.com/modes/predict

Trained an untrained model at first it was not able to predict check v10n_u_trained_10 which didnt predict anything then trained it to 500 epoch and works well

Pretrained¶

v10n_pretrained_predict¶

In [3]:
model_pretrained=YOLO(model='yolov10n.pt')
In [25]:
results=model_pretrained("img1.jpg")
results[0].show()
image 1/1 /mnt/d/workspace/Pothole/img1.jpg: 640x640 1 person, 59.4ms
Speed: 3.3ms preprocess, 59.4ms inference, 1.2ms postprocess per image at shape (1, 3, 640, 640)
No description has been provided for this image

v10n_pre_trained_100_train¶

In [26]:
# training a pretrained model v10n_train
# saves as trani 
# kernel crash after val_batch0_pred
model_pretrained.train(data="dataset/data.yaml", batch=8, epochs=100, imgsz=640)
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
engine/trainer: task=detect, mode=train, model=yolov10n.pt, data=dataset/data.yaml, epochs=100, time=None, patience=100, batch=8, imgsz=640, save=True, save_period=-1, cache=False, device=None, workers=8, project=None, name=train, exist_ok=False, pretrained=True, optimizer=auto, verbose=True, seed=0, deterministic=True, single_cls=False, rect=False, cos_lr=False, close_mosaic=10, resume=False, amp=True, fraction=1.0, profile=False, freeze=None, multi_scale=False, overlap_mask=True, mask_ratio=4, dropout=0.0, val=True, split=val, save_json=False, save_hybrid=False, conf=None, iou=0.7, max_det=300, half=False, dnn=False, plots=True, source=None, vid_stride=1, stream_buffer=False, visualize=False, augment=False, agnostic_nms=False, classes=None, retina_masks=False, embed=None, show=False, save_frames=False, save_txt=False, save_conf=False, save_crop=False, show_labels=True, show_conf=True, show_boxes=True, line_width=None, format=torchscript, keras=False, optimize=False, int8=False, dynamic=False, simplify=False, opset=None, workspace=4, nms=False, lr0=0.01, lrf=0.01, momentum=0.937, weight_decay=0.0005, warmup_epochs=3.0, warmup_momentum=0.8, warmup_bias_lr=0.1, box=7.5, cls=0.5, dfl=1.5, pose=12.0, kobj=1.0, label_smoothing=0.0, nbs=64, hsv_h=0.015, hsv_s=0.7, hsv_v=0.4, degrees=0.0, translate=0.1, scale=0.5, shear=0.0, perspective=0.0, flipud=0.0, fliplr=0.5, bgr=0.0, mosaic=1.0, mixup=0.0, copy_paste=0.0, auto_augment=randaugment, erasing=0.4, crop_fraction=1.0, cfg=None, tracker=botsort.yaml, save_dir=runs/detect/train
Overriding model.yaml nc=80 with nc=1

                   from  n    params  module                                       arguments                     
  0                  -1  1       464  ultralytics.nn.modules.conv.Conv             [3, 16, 3, 2]                 
  1                  -1  1      4672  ultralytics.nn.modules.conv.Conv             [16, 32, 3, 2]                
  2                  -1  1      7360  ultralytics.nn.modules.block.C2f             [32, 32, 1, True]             
  3                  -1  1     18560  ultralytics.nn.modules.conv.Conv             [32, 64, 3, 2]                
  4                  -1  2     49664  ultralytics.nn.modules.block.C2f             [64, 64, 2, True]             
  5                  -1  1      9856  ultralytics.nn.modules.block.SCDown          [64, 128, 3, 2]               
  6                  -1  2    197632  ultralytics.nn.modules.block.C2f             [128, 128, 2, True]           
  7                  -1  1     36096  ultralytics.nn.modules.block.SCDown          [128, 256, 3, 2]              
  8                  -1  1    460288  ultralytics.nn.modules.block.C2f             [256, 256, 1, True]           
  9                  -1  1    164608  ultralytics.nn.modules.block.SPPF            [256, 256, 5]                 
 10                  -1  1    249728  ultralytics.nn.modules.block.PSA             [256, 256]                    
 11                  -1  1         0  torch.nn.modules.upsampling.Upsample         [None, 2, 'nearest']          
 12             [-1, 6]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 13                  -1  1    148224  ultralytics.nn.modules.block.C2f             [384, 128, 1]                 
 14                  -1  1         0  torch.nn.modules.upsampling.Upsample         [None, 2, 'nearest']          
 15             [-1, 4]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 16                  -1  1     37248  ultralytics.nn.modules.block.C2f             [192, 64, 1]                  
 17                  -1  1     36992  ultralytics.nn.modules.conv.Conv             [64, 64, 3, 2]                
 18            [-1, 13]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 19                  -1  1    123648  ultralytics.nn.modules.block.C2f             [192, 128, 1]                 
 20                  -1  1     18048  ultralytics.nn.modules.block.SCDown          [128, 128, 3, 2]              
 21            [-1, 10]  1         0  ultralytics.nn.modules.conv.Concat           [1]                           
 22                  -1  1    282624  ultralytics.nn.modules.block.C2fCIB          [384, 256, 1, True, True]     
 23        [16, 19, 22]  1    861718  ultralytics.nn.modules.head.v10Detect        [1, [64, 128, 256]]           
YOLOv10n summary: 385 layers, 2,707,430 parameters, 2,707,414 gradients, 8.4 GFLOPs

Transferred 88/595 items from pretrained weights
Freezing layer 'model.23.dfl.conv.weight'
AMP: running Automatic Mixed Precision (AMP) checks with YOLOv8n...
AMP: checks passed ✅
train: Scanning /mnt/d/workspace/cv/dl/66e31d6ee96cd_student_resource_3/student_resource 3/datasets/dataset/train/labels.cache... 720 images, 0 backgr
val: Scanning /mnt/d/workspace/cv/dl/66e31d6ee96cd_student_resource_3/student_resource 3/datasets/dataset/valid/labels.cache... 60 images, 0 backgroun
Plotting labels to runs/detect/train/labels.jpg... 
optimizer: 'optimizer=auto' found, ignoring 'lr0=0.01' and 'momentum=0.937' and determining best 'optimizer', 'lr0' and 'momentum' automatically... 
optimizer: AdamW(lr=0.002, momentum=0.9) with parameter groups 95 weight(decay=0.0), 108 weight(decay=0.0005), 107 bias(decay=0.0)
Image sizes 640 train, 640 val
Using 8 dataloader workers
Logging results to runs/detect/train
Starting training for 100 epochs...

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      1/100      1.64G      4.875      8.757      5.201         21        640: 100%|██████████| 90/90 [00:13<00:00,  6.54it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.71it/s]
                   all         60        201      0.256     0.0299     0.0552     0.0231

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      2/100      1.64G      3.541       6.34      3.723         66        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.334      0.328      0.254      0.138

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      3/100      1.64G      3.227      5.286      3.313         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.28it/s]
                   all         60        201       0.36      0.378      0.308      0.164

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      4/100      1.65G       3.09      4.578      3.145         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.27it/s]
                   all         60        201      0.436      0.501      0.408      0.205

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      5/100      1.64G      2.991      4.004      3.013         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.18it/s]
                   all         60        201      0.628      0.498      0.516       0.28

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      6/100      1.64G      2.904      3.614      2.905         48        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.95it/s]
                   all         60        201      0.531      0.501      0.534      0.286

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      7/100      1.64G      2.876       3.44       2.87         23        640: 100%|██████████| 90/90 [00:12<00:00,  7.04it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.44it/s]
                   all         60        201      0.464      0.547      0.507       0.29

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      8/100      1.64G      2.884      3.247       2.84         52        640: 100%|██████████| 90/90 [00:13<00:00,  6.80it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.45it/s]
                   all         60        201       0.54      0.527      0.527       0.29

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
      9/100      1.64G      2.747      2.969      2.742         41        640: 100%|██████████| 90/90 [00:13<00:00,  6.62it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.21it/s]
                   all         60        201      0.515      0.582      0.521      0.288

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     10/100      1.64G       2.73       2.95      2.716         45        640: 100%|██████████| 90/90 [00:13<00:00,  6.60it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.71it/s]
                   all         60        201      0.613      0.502      0.545      0.308

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     11/100      1.64G      2.704      2.829      2.732         47        640: 100%|██████████| 90/90 [00:13<00:00,  6.71it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.83it/s]
                   all         60        201      0.608      0.547      0.575      0.305

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     12/100      1.65G      2.671      2.817        2.7         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.72it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.64it/s]
                   all         60        201       0.59      0.572      0.559      0.313

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     13/100      1.64G      2.648       2.68      2.673         20        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.15it/s]
                   all         60        201      0.637      0.527      0.576      0.332

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     14/100      1.64G      2.607      2.678      2.641         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.85it/s]
                   all         60        201      0.588      0.589      0.605      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     15/100      1.64G      2.597      2.506      2.623         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.26it/s]
                   all         60        201       0.66       0.54      0.596      0.354

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     16/100      1.64G      2.537      2.447      2.589         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.38it/s]
                   all         60        201      0.565      0.542      0.578      0.347

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     17/100      1.64G      2.559      2.468      2.616         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.72it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.78it/s]
                   all         60        201      0.694      0.507      0.612      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     18/100      1.65G      2.526      2.421      2.632         46        640: 100%|██████████| 90/90 [00:13<00:00,  6.73it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.02it/s]
                   all         60        201      0.722      0.542       0.62      0.359

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     19/100      1.64G      2.528      2.336      2.539         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.72it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.63it/s]
                   all         60        201      0.688      0.557      0.618      0.353

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     20/100      1.64G      2.487      2.254      2.534         22        640: 100%|██████████| 90/90 [00:13<00:00,  6.78it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.23it/s]
                   all         60        201      0.609      0.565      0.567      0.338

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     21/100      1.64G      2.485      2.244      2.546         18        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.08it/s]
                   all         60        201      0.629      0.612      0.625      0.352

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     22/100      1.64G      2.403      2.095      2.447         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.77it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.10it/s]
                   all         60        201      0.674      0.532      0.589      0.344

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     23/100      1.64G      2.419      2.124      2.461         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.46it/s]
                   all         60        201      0.616      0.612      0.625      0.362

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     24/100      1.64G      2.375      2.143      2.486         36        640: 100%|██████████| 90/90 [00:12<00:00,  6.98it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.83it/s]
                   all         60        201      0.574      0.582      0.584      0.343

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     25/100      1.64G      2.377      2.101       2.48         64        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.01it/s]
                   all         60        201      0.693      0.642      0.665      0.404

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     26/100      1.64G      2.402      2.041      2.471         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.20it/s]
                   all         60        201      0.654      0.639      0.668      0.409

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     27/100      1.64G      2.329      1.995      2.459         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.77it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.616      0.567      0.612      0.374

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     28/100      1.64G      2.366      1.951       2.44         66        640: 100%|██████████| 90/90 [00:12<00:00,  6.93it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.16it/s]
                   all         60        201      0.588      0.592      0.591      0.358

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     29/100      1.64G      2.286      1.938        2.4         29        640: 100%|██████████| 90/90 [00:13<00:00,  6.69it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.88it/s]
                   all         60        201      0.715      0.512      0.604      0.382

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     30/100      1.64G       2.27      1.906      2.388         29        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.653      0.632      0.656      0.398

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     31/100      1.64G      2.265      1.862      2.403         29        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.82it/s]
                   all         60        201      0.592      0.617       0.61      0.367

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     32/100      1.65G      2.256      1.868      2.367         24        640: 100%|██████████| 90/90 [00:13<00:00,  6.77it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.20it/s]
                   all         60        201      0.629      0.657       0.66      0.403

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     33/100      1.64G      2.194      1.791      2.338         43        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.96it/s]
                   all         60        201      0.708      0.555      0.644      0.393

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     34/100      1.65G      2.237      1.871      2.378         42        640: 100%|██████████| 90/90 [00:13<00:00,  6.84it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.82it/s]
                   all         60        201      0.615      0.647      0.622      0.386

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     35/100      1.64G       2.18      1.753      2.321         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.77it/s]
                   all         60        201        0.7      0.602       0.68      0.411

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     36/100      1.64G      2.172      1.761      2.339         39        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.90it/s]
                   all         60        201      0.781      0.522      0.662      0.408

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     37/100      1.65G      2.213      1.702      2.349         41        640: 100%|██████████| 90/90 [00:13<00:00,  6.64it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.04it/s]
                   all         60        201      0.693      0.602      0.649      0.395

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     38/100      1.64G      2.177      1.683       2.31         59        640: 100%|██████████| 90/90 [00:13<00:00,  6.61it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.80it/s]
                   all         60        201      0.679      0.577      0.635      0.378

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     39/100      1.64G      2.166      1.731      2.332         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.94it/s]
                   all         60        201      0.675      0.662       0.67      0.397

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     40/100      1.64G      2.203      1.727      2.332         29        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.679      0.599      0.648        0.4

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     41/100      1.64G      2.171      1.655      2.323         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.89it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.24it/s]
                   all         60        201      0.649      0.645      0.654      0.389

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     42/100      1.65G      2.094      1.631      2.272         40        640: 100%|██████████| 90/90 [00:13<00:00,  6.68it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.19it/s]
                   all         60        201      0.612      0.692      0.677      0.402

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     43/100      1.64G      2.161      1.613      2.281         24        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.12it/s]
                   all         60        201      0.633      0.651      0.638      0.385

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     44/100      1.64G      2.125      1.605      2.296         23        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.95it/s]
                   all         60        201      0.661      0.612      0.657      0.398

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     45/100      1.64G      2.114      1.561      2.265         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.90it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.85it/s]
                   all         60        201      0.683      0.612      0.635      0.378

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     46/100      1.64G      2.101      1.604      2.297         49        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.82it/s]
                   all         60        201       0.67      0.542       0.62      0.373

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     47/100      1.65G      2.067      1.532      2.257         40        640: 100%|██████████| 90/90 [00:13<00:00,  6.71it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.02it/s]
                   all         60        201      0.681      0.622      0.671      0.384

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     48/100      1.64G      2.076      1.533      2.255         40        640: 100%|██████████| 90/90 [00:13<00:00,  6.70it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.718       0.57      0.658      0.389

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     49/100      1.64G      2.046      1.462      2.233         24        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.59it/s]
                   all         60        201       0.64      0.602      0.628      0.395

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     50/100      1.65G      1.974      1.462      2.215         25        640: 100%|██████████| 90/90 [00:13<00:00,  6.50it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.53it/s]
                   all         60        201      0.662      0.607       0.65        0.4

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     51/100      1.65G      2.019      1.524      2.231         24        640: 100%|██████████| 90/90 [00:13<00:00,  6.63it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.655      0.617      0.647      0.392

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     52/100      1.64G      1.922      1.421      2.195         30        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.60it/s]
                   all         60        201      0.628      0.667      0.673      0.413

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     53/100      1.65G      2.044      1.489      2.229         31        640: 100%|██████████| 90/90 [00:12<00:00,  6.95it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.18it/s]
                   all         60        201      0.727      0.567      0.651      0.406

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     54/100      1.64G      1.927      1.417      2.199         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.31it/s]
                   all         60        201      0.658      0.632      0.662      0.414

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     55/100      1.64G      1.977      1.429      2.205         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.69it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.86it/s]
                   all         60        201      0.762      0.537      0.647      0.384

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     56/100      1.65G      1.957      1.388      2.183         44        640: 100%|██████████| 90/90 [00:12<00:00,  6.99it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.706      0.657      0.692       0.41

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     57/100      1.65G      1.973      1.418        2.2         39        640: 100%|██████████| 90/90 [00:12<00:00,  6.95it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.74it/s]
                   all         60        201      0.618      0.687      0.663      0.398

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     58/100      1.64G      1.905      1.353      2.166         20        640: 100%|██████████| 90/90 [00:13<00:00,  6.72it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.53it/s]
                   all         60        201      0.733      0.607      0.678      0.408

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     59/100      1.65G      1.942      1.333      2.212         32        640: 100%|██████████| 90/90 [00:12<00:00,  6.96it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.00it/s]
                   all         60        201      0.715      0.651      0.678      0.398

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     60/100      1.65G      1.946      1.325      2.172         34        640: 100%|██████████| 90/90 [00:12<00:00,  7.01it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.22it/s]
                   all         60        201      0.641      0.665       0.65      0.395

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     61/100      1.65G      1.882      1.315      2.159         44        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.01it/s]
                   all         60        201      0.652      0.671      0.673      0.401

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     62/100      1.64G      1.919      1.381      2.177         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.36it/s]
                   all         60        201      0.691      0.547      0.647       0.39

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     63/100      1.64G      1.949      1.358      2.192         34        640: 100%|██████████| 90/90 [00:13<00:00,  6.64it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.68it/s]
                   all         60        201      0.632      0.591      0.616      0.378

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     64/100      1.65G       1.84      1.319      2.167         23        640: 100%|██████████| 90/90 [00:13<00:00,  6.78it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.93it/s]
                   all         60        201      0.676      0.602      0.646      0.392

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     65/100      1.64G      1.906      1.321      2.187         30        640: 100%|██████████| 90/90 [00:13<00:00,  6.63it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.10it/s]
                   all         60        201      0.674      0.622      0.674        0.4

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     66/100      1.64G      1.867      1.288      2.142         20        640: 100%|██████████| 90/90 [00:13<00:00,  6.77it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.49it/s]
                   all         60        201      0.679      0.662      0.661      0.406

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     67/100      1.65G      1.827      1.253      2.121         43        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.93it/s]
                   all         60        201       0.64      0.637      0.664      0.395

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     68/100      1.65G      1.843      1.277      2.131         42        640: 100%|██████████| 90/90 [00:13<00:00,  6.72it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.91it/s]
                   all         60        201      0.662      0.587      0.641      0.393

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     69/100      1.64G      1.809      1.277       2.15         36        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.58it/s]
                   all         60        201      0.699      0.597      0.661      0.409

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     70/100      1.64G      1.832      1.271      2.141         38        640: 100%|██████████| 90/90 [00:13<00:00,  6.85it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.21it/s]
                   all         60        201      0.701      0.631      0.662       0.41

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     71/100      1.65G       1.82      1.277      2.151         23        640: 100%|██████████| 90/90 [00:13<00:00,  6.91it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.04it/s]
                   all         60        201      0.698      0.609      0.666      0.402

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     72/100      1.65G      1.797      1.216      2.119         48        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.41it/s]
                   all         60        201      0.737      0.602      0.662      0.406

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     73/100      1.65G      1.753       1.16       2.13         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.83it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.27it/s]
                   all         60        201      0.713      0.619      0.677      0.407

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     74/100      1.64G      1.809      1.258      2.128         43        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.11it/s]
                   all         60        201      0.692      0.632      0.659      0.397

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     75/100      1.64G      1.796      1.215      2.099         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.02it/s]
                   all         60        201      0.726      0.592      0.682      0.419

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     76/100      1.64G      1.761      1.194      2.085         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.82it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.61it/s]
                   all         60        201        0.7      0.627      0.665      0.416

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     77/100      1.65G       1.76      1.168      2.089         32        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.32it/s]
                   all         60        201      0.689      0.612      0.662      0.416

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     78/100      1.64G      1.768      1.179      2.105         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.24it/s]
                   all         60        201      0.659      0.672      0.669      0.419

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     79/100      1.64G      1.781      1.222      2.113         27        640: 100%|██████████| 90/90 [00:13<00:00,  6.79it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.678      0.618      0.652      0.416

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     80/100      1.65G      1.735      1.158        2.1         31        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.95it/s]
                   all         60        201      0.648      0.647      0.663      0.419

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     81/100      1.64G      1.707      1.171      2.095         54        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.705      0.622      0.679      0.423

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     82/100      1.64G       1.68      1.097      2.065         36        640: 100%|██████████| 90/90 [00:12<00:00,  6.95it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.55it/s]
                   all         60        201       0.66      0.627      0.655      0.401

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     83/100      1.64G      1.736       1.13      2.081         33        640: 100%|██████████| 90/90 [00:13<00:00,  6.87it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.88it/s]
                   all         60        201      0.693      0.607      0.658      0.415

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     84/100      1.64G      1.728      1.171      2.104         24        640: 100%|██████████| 90/90 [00:13<00:00,  6.72it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.69it/s]
                   all         60        201      0.658      0.671      0.662      0.405

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     85/100      1.65G      1.697      1.095      2.062         37        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.82it/s]
                   all         60        201      0.642      0.659      0.653      0.396

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     86/100      1.64G      1.712      1.116       2.06         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.88it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.56it/s]
                   all         60        201       0.72      0.607      0.672      0.411

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     87/100      1.65G      1.692      1.096      2.045         17        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.09it/s]
                   all         60        201      0.699      0.622      0.678      0.417

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     88/100      1.64G      1.671      1.071      2.058         35        640: 100%|██████████| 90/90 [00:13<00:00,  6.81it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.05it/s]
                   all         60        201      0.676      0.637      0.656      0.404

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     89/100      1.65G      1.659      1.104      2.055         25        640: 100%|██████████| 90/90 [00:13<00:00,  6.78it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.06it/s]
                   all         60        201      0.723      0.622      0.678      0.425

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     90/100      1.65G       1.65      1.071      2.051         28        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.43it/s]
                   all         60        201      0.648      0.677      0.686      0.427

Closing dataloader mosaic

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     91/100      1.65G      1.503      0.888      1.969         21        640: 100%|██████████| 90/90 [00:13<00:00,  6.76it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.80it/s]
                   all         60        201      0.753      0.605      0.684      0.424

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     92/100      1.65G      1.499     0.8301      1.976         22        640: 100%|██████████| 90/90 [00:12<00:00,  6.94it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.14it/s]
                   all         60        201      0.738      0.622      0.697      0.432

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     93/100      1.65G      1.419     0.7668      1.919         19        640: 100%|██████████| 90/90 [00:13<00:00,  6.73it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.00it/s]
                   all         60        201      0.689      0.637      0.684      0.426

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     94/100      1.65G      1.435     0.7956      1.927         17        640: 100%|██████████| 90/90 [00:13<00:00,  6.75it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.21it/s]
                   all         60        201      0.724      0.607      0.685      0.425

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     95/100      1.65G      1.414     0.7977        1.9         21        640: 100%|██████████| 90/90 [00:13<00:00,  6.86it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.14it/s]
                   all         60        201      0.748      0.622      0.692      0.429

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     96/100      1.65G      1.414      0.769      1.926         18        640: 100%|██████████| 90/90 [00:13<00:00,  6.65it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.40it/s]
                   all         60        201      0.715      0.662      0.696      0.426

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     97/100      1.65G      1.404     0.7754      1.928         17        640: 100%|██████████| 90/90 [00:13<00:00,  6.74it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.11it/s]
                   all         60        201      0.719      0.637      0.694      0.426

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     98/100      1.65G      1.405     0.7472      1.902         14        640: 100%|██████████| 90/90 [00:13<00:00,  6.92it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  8.35it/s]
                   all         60        201      0.714      0.637      0.691      0.429

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
     99/100      1.65G      1.368     0.7545      1.902         32        640: 100%|██████████| 90/90 [00:12<00:00,  6.95it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.86it/s]
                   all         60        201      0.743      0.612      0.697      0.429

      Epoch    GPU_mem   box_loss   cls_loss   dfl_loss  Instances       Size
    100/100      1.65G      1.383      0.771      1.918         20        640: 100%|██████████| 90/90 [00:13<00:00,  6.68it/s]
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95): 100%|██████████| 4/4 [00:00<00:00,  7.98it/s]
                   all         60        201      0.766      0.617      0.697      0.435

100 epochs completed in 0.396 hours.
Optimizer stripped from runs/detect/train/weights/last.pt, 5.8MB
Optimizer stripped from runs/detect/train/weights/best.pt, 5.8MB

Validating runs/detect/train/weights/best.pt...
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
YOLOv10n summary (fused): 285 layers, 2,694,806 parameters, 0 gradients, 8.2 GFLOPs
                 Class     Images  Instances      Box(P          R      mAP50  mAP50-95):  75%|███████▌  | 3/4 [00:02<00:00,  1.37it/s]
The Kernel crashed while executing code in the current cell or a previous cell. 

Please review the code in the cell(s) to identify a possible cause of the failure. 

Click <a href='https://aka.ms/vscodeJupyterKernelCrash'>here</a> for more info. 

View Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details.
Canceled future for execute_request message before replies were done
Canceled future for execute_request message before replies were done. 

View Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details.
The Kernel crashed while executing code in the current cell or a previous cell. 

Please review the code in the cell(s) to identify a possible cause of the failure. 

Click <a href='https://aka.ms/vscodeJupyterKernelCrash'>here</a> for more info. 

View Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details.

Predict¶

In [2]:
# able to predict with only 100 epoch
model_pre_trained=YOLO('runs/detect/v10n_pre_trained_100_train/weights/best.pt')
results=model_pre_trained("img1.jpg")
results[0].show()
image 1/1 /mnt/d/workspace/Pothole/img1.jpg: 640x640 9 Potholes, 12.9ms
Speed: 2.5ms preprocess, 12.9ms inference, 5.6ms postprocess per image at shape (1, 3, 640, 640)
No description has been provided for this image

v10n_p_trained_100_predict¶

In [5]:
# v10n_p_trained_100
!yolo task= detect mode=predict conf=0.4 save=True model=runs/detect/train/weights/best.pt source=dataset/valid/images
Ultralytics YOLOv8.2.94 🚀 Python-3.10.12 torch-2.0.1+cu117 CUDA:0 (NVIDIA GeForce RTX 4050 Laptop GPU, 6140MiB)
YOLOv10n summary (fused): 285 layers, 2,694,806 parameters, 0 gradients, 8.2 GFLOPs

image 1/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-114-_jpg.rf.a0f30e06b3b96d7879d5f55a7012433c.jpg: 640x640 (no detections), 11.4ms
image 2/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-116-_jpg.rf.ddcb9d0e0bcf2a1a5096c4f04e6b7f9e.jpg: 640x640 7 Potholes, 11.8ms
image 3/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-123-_jpg.rf.385ae3fbcdabda81f72ddf11f6a4b93d.jpg: 640x640 (no detections), 13.4ms
image 4/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-125-_jpg.rf.3d316e9144cb7438021e01065de91057.jpg: 640x640 10 Potholes, 10.1ms
image 5/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-129-_jpg.rf.d307956eee8ac32fbe793335e87c7b67.jpg: 640x640 1 Pothole, 11.4ms
image 6/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-140-_jpg.rf.430bfe74decf2b904377d127914f2092.jpg: 640x640 (no detections), 10.8ms
image 7/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-144-_jpg.rf.61a3b886f058ed3a4788426cfa7c4988.jpg: 640x640 1 Pothole, 9.8ms
image 8/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-151-_jpg.rf.45a82558c583efe9dda4ea02e294595a.jpg: 640x640 2 Potholes, 8.6ms
image 9/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-152-_jpg.rf.510fb0040c8523bb66ec10b0fe67b4b4.jpg: 640x640 11 Potholes, 11.1ms
image 10/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-154-_jpg.rf.a9e6b534da24b1c1815902210ab23be9.jpg: 640x640 1 Pothole, 10.2ms
image 11/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-157-_jpg.rf.2247b000d655232fbf8a58b5add102ca.jpg: 640x640 10 Potholes, 10.7ms
image 12/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-161-_jpg.rf.1cff77d21f54b7ed9234e896abcf0f5b.jpg: 640x640 1 Pothole, 11.3ms
image 13/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-165-_jpg.rf.82b3db37518b15aa73be6e4093deaf46.jpg: 640x640 1 Pothole, 10.4ms
image 14/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-17-_jpg.rf.0d172b6accedf4c52a3868d9b690d48b.jpg: 640x640 1 Pothole, 11.3ms
image 15/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-173-_jpg.rf.73512294c1b7b5c500eac27a0fb669f7.jpg: 640x640 1 Pothole, 11.3ms
image 16/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-175-_jpg.rf.9fc746d4865c11f38047cf383baa30a6.jpg: 640x640 2 Potholes, 10.4ms
image 17/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-178-_jpg.rf.2e27d006aec1544f1eec88d9170fd6ce.jpg: 640x640 1 Pothole, 11.8ms
image 18/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-183-_jpg.rf.277cfed19f046acc63dc9640b239f1df.jpg: 640x640 1 Pothole, 10.1ms
image 19/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-184-_jpg.rf.cb753b5f714073fc4a8c2de602386399.jpg: 640x640 6 Potholes, 11.5ms
image 20/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-192-_jpg.rf.e0b55409488785e7156677026d372c23.jpg: 640x640 1 Pothole, 11.2ms
image 21/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-193-_jpg.rf.4520ff34079afc8e9f9b50a633c08876.jpg: 640x640 1 Pothole, 9.8ms
image 22/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-20-_jpg.rf.4b34591f154f226347c9ca9dfb33b2e4.jpg: 640x640 1 Pothole, 9.6ms
image 23/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-202-_jpg.rf.8c64ec46a9e120007c12c2e4841c9555.jpg: 640x640 (no detections), 10.1ms
image 24/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-204-_jpg.rf.c3990b25e295bfd6b4605c6305cce37c.jpg: 640x640 3 Potholes, 11.4ms
image 25/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-205-_jpg.rf.cf4be807bced55552b98c208585d2c56.jpg: 640x640 2 Potholes, 8.4ms
image 26/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-209-_jpg.rf.533a84bcc43e29e16c0f80069ee7f8df.jpg: 640x640 1 Pothole, 8.6ms
image 27/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-22-_jpg.rf.aec225ee7ab2b5f7791d6579b213600b.jpg: 640x640 1 Pothole, 11.0ms
image 28/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-225-_jpg.rf.38cc0deddb897c98814f644451130bb7.jpg: 640x640 (no detections), 8.4ms
image 29/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-228-_jpg.rf.4dcc6aa7dfc0c9a59a7f033e2ed12413.jpg: 640x640 1 Pothole, 10.2ms
image 30/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-230-_jpg.rf.ffe557c4b95e23f1a4323cf7768060f2.jpg: 640x640 2 Potholes, 8.9ms
image 31/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-236-_jpg.rf.34f38065b7233d8b9c03b746ffc9a780.jpg: 640x640 (no detections), 8.7ms
image 32/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-254-_jpg.rf.2b5c3b2efce3960f4f29319ebaa1d220.jpg: 640x640 (no detections), 8.9ms
image 33/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-257-_jpg.rf.09cb9983a70f1bd7ba096c252b64f909.jpg: 640x640 (no detections), 9.5ms
image 34/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-262-_jpg.rf.02970860794f859699c9f743bc0fd7d1.jpg: 640x640 1 Pothole, 11.9ms
image 35/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-263-_jpg.rf.47073e3fbc426b15c3caa7e8daa66719.jpg: 640x640 1 Pothole, 10.3ms
image 36/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-269-_jpg.rf.196b54c0db633b6b02612f69072abb99.jpg: 640x640 1 Pothole, 8.5ms
image 37/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-27-_jpg.rf.b4cd8eb26d6941eabfc17280f03bca69.jpg: 640x640 4 Potholes, 8.0ms
image 38/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-270-_jpg.rf.2a0793533346a7355bbeb34291b4a067.jpg: 640x640 1 Pothole, 8.6ms
image 39/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-271-_jpg.rf.0210435cf32159dca447e61250afb67f.jpg: 640x640 2 Potholes, 11.8ms
image 40/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-273-_jpg.rf.36d10c68fb23799bd0a58e48e0b995ce.jpg: 640x640 2 Potholes, 8.7ms
image 41/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-28-_jpg.rf.fe8316c392940899d9211be3305c9ab6.jpg: 640x640 1 Pothole, 13.2ms
image 42/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-288-_jpg.rf.26f8da57a5a023907e5e061dbd0a5632.jpg: 640x640 1 Pothole, 18.4ms
image 43/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-290-_jpg.rf.bcf58ab867c40a607759aec5666fece4.jpg: 640x640 6 Potholes, 10.9ms
image 44/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-292-_jpg.rf.f3d0a40ac5190529f4dd4886d6f5e5d0.jpg: 640x640 1 Pothole, 10.3ms
image 45/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-303-_jpg.rf.236ed95889a91baf47b304faa7cbae01.jpg: 640x640 1 Pothole, 12.6ms
image 46/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-308-_jpg.rf.8f5b6dc0b616365d05bce17bf30eff39.jpg: 640x640 2 Potholes, 10.3ms
image 47/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-33-_jpg.rf.143c56d136e3245555b26b4d5108a4e1.jpg: 640x640 4 Potholes, 13.9ms
image 48/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-36-_jpg.rf.13a668c4003681c4631508465eef5a9f.jpg: 640x640 6 Potholes, 10.0ms
image 49/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-42-_jpg.rf.28b626ac5e887c92feeed1a3c5e85b64.jpg: 640x640 2 Potholes, 19.8ms
image 50/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-45-_jpg.rf.8e102a986584d47797dc92558c2af624.jpg: 640x640 1 Pothole, 10.6ms
image 51/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-50-_jpg.rf.cb41506e84f6cac629bd55e40e329834.jpg: 640x640 1 Pothole, 9.2ms
image 52/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-58-_jpg.rf.8f585bdabd7d6e5b0285121867659f37.jpg: 640x640 (no detections), 12.4ms
image 53/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-60-_jpg.rf.4e715308cc8dc7455b767414cda028ab.jpg: 640x640 3 Potholes, 10.1ms
image 54/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-61-_jpg.rf.72ad391fcf2334c24de5ed48dda25001.jpg: 640x640 1 Pothole, 15.1ms
image 55/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-67-_jpg.rf.663b4f930bb764609355101fbce07ab1.jpg: 640x640 1 Pothole, 10.5ms
image 56/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-69-_jpg.rf.0fcb6cd22beb140d931a387036b7eab6.jpg: 640x640 13 Potholes, 10.6ms
image 57/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-72-_jpg.rf.82c8314917ff5284106bd3428cff5792.jpg: 640x640 1 Pothole, 7.1ms
image 58/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-88-_jpg.rf.1cb5c1768861244cf01d2c5691bb3e08.jpg: 640x640 2 Potholes, 10.1ms
image 59/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-95-_jpg.rf.eca25439e9e1dd31f29df105f4faa122.jpg: 640x640 1 Pothole, 7.9ms
image 60/60 /mnt/d/workspace/Pothole/dataset/valid/images/pic-99-_jpg.rf.28d287fa96c09a12f2511e1b4df7e5a1.jpg: 640x640 3 Potholes, 8.6ms
Speed: 1.3ms preprocess, 10.7ms inference, 0.6ms postprocess per image at shape (1, 3, 640, 640)
Results saved to runs/detect/predict
💡 Learn more at https://docs.ultralytics.com/modes/predict

v10n_p_trained_100_trainingset_predict¶

In [ ]:
#training predict
model_pre_trained("dataset/train/images")
image 1/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.49882cdb272111f43a6656b1494a4918.jpg: 640x640 3 Potholes, 60.4ms
image 2/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.8d95dd1d29760a2634a45cc7fdd84b31.jpg: 640x640 3 Potholes, 92.7ms
image 3/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.e238c9bf3fe82e8ac55b0014a27fc529.jpg: 640x640 3 Potholes, 53.6ms
image 4/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.1d433d21e11d000b6b498eacb88fe4a9.jpg: 640x640 27 Potholes, 46.8ms
image 5/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.500c683a687e403f4cdade4826a84b5b.jpg: 640x640 25 Potholes, 25.9ms
image 6/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.5a901c212d899a7dc7dc78be7de892c0.jpg: 640x640 26 Potholes, 36.7ms
image 7/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.17047bb032a49c96643c5f2108bb99dd.jpg: 640x640 2 Potholes, 26.4ms
image 8/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.8c9076ee84698f90f04765f4e794a819.jpg: 640x640 2 Potholes, 25.4ms
image 9/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.ebc3af260e989e6f9e1e9221b9dff6b0.jpg: 640x640 2 Potholes, 27.9ms
image 10/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.1e32a49f89a38974ded11bba8dd3e56b.jpg: 640x640 2 Potholes, 28.9ms
image 11/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.4abe48a3d2a5e556908bf4286446e5ce.jpg: 640x640 2 Potholes, 37.7ms
image 12/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.8380b58f6540ec91db66934b342f7f9e.jpg: 640x640 2 Potholes, 19.5ms
image 13/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.bb6db5bdb59d1a6af15b0a0b565a3cdb.jpg: 640x640 1 Pothole, 21.2ms
image 14/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.cd0b0b3a64e3a11005884c98c1f6c3aa.jpg: 640x640 1 Pothole, 20.9ms
image 15/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.df35bf045672f19a05f84a8c365dab3a.jpg: 640x640 1 Pothole, 22.4ms
image 16/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.26017e20e92320bcde575710389353b1.jpg: 640x640 1 Pothole, 8.2ms
image 17/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.4fa35472ae606aca56d49966dc91b5b6.jpg: 640x640 1 Pothole, 11.5ms
image 18/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.e204fd0f4f80094ec52c54c31ab06db0.jpg: 640x640 1 Pothole, 7.7ms
image 19/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.117ec7cfcc77d6e6f80130934b1d5aa1.jpg: 640x640 7 Potholes, 9.0ms
image 20/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.e4efc52e048da0b6918c135b1bd39962.jpg: 640x640 6 Potholes, 8.9ms
image 21/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.f986cb78d75fc164de95ac33c56d9474.jpg: 640x640 6 Potholes, 7.8ms
image 22/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.0b52d3fe11f0b249a5eb2f14a8f0a14f.jpg: 640x640 1 Pothole, 8.6ms
image 23/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.0ce0939aec2bb2ab235addf64d130914.jpg: 640x640 1 Pothole, 8.1ms
image 24/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.859bee21c8abeda9bc4ef41da6d2d0bf.jpg: 640x640 1 Pothole, 7.3ms
image 25/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.0cbfb7193cdb49723d65f538678e22d2.jpg: 640x640 1 Pothole, 8.4ms
image 26/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.ac62ec1fab28b4344978edf35e9d2f3b.jpg: 640x640 1 Pothole, 7.6ms
image 27/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.e4becd5b84615a7550986c2835dc285e.jpg: 640x640 1 Pothole, 8.0ms
image 28/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.03fc77860b4af0df70c5ab46db783441.jpg: 640x640 1 Pothole, 7.5ms
image 29/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.3553f8919ce95633136ebe837864a734.jpg: 640x640 1 Pothole, 8.8ms
image 30/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.f0ad7fbe0407cb85527525e503913079.jpg: 640x640 1 Pothole, 12.5ms
image 31/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.0a11aa9e03c7bce050328b7bb2341bad.jpg: 640x640 6 Potholes, 7.8ms
image 32/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.1dee3ebe35fda326931fb1a1a3162f56.jpg: 640x640 5 Potholes, 10.6ms
image 33/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.539074c8d5134b846ed4b34e66362766.jpg: 640x640 6 Potholes, 7.7ms
image 34/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.04274b3be06ee972e8900a1875f45611.jpg: 640x640 1 Pothole, 9.7ms
image 35/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.b84c3f664bd7ae818c9af8fb6bc95a9c.jpg: 640x640 1 Pothole, 7.9ms
image 36/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.de4b44ded5874999731e65adcf907536.jpg: 640x640 1 Pothole, 7.3ms
image 37/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.39503b2272330e0dd57ffe9fc6ed720e.jpg: 640x640 1 Pothole, 8.0ms
image 38/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.489d3c93901c3240d87b78333702d26c.jpg: 640x640 2 Potholes, 7.8ms
image 39/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.7bf3ce1997b0a5d878ad6fabe1e5772a.jpg: 640x640 1 Pothole, 8.3ms
image 40/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.c61b825409e38c7651bca32e1d9680b5.jpg: 640x640 1 Pothole, 7.7ms
image 41/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.c9150ba543315705a5bb08654144ccf9.jpg: 640x640 1 Pothole, 7.8ms
image 42/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.ddb9b30f00ca7dfad4235fcd67610a9b.jpg: 640x640 1 Pothole, 7.5ms
image 43/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.39065e4e7f12e6c9d4e829f9df001cec.jpg: 640x640 5 Potholes, 7.8ms
image 44/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.3a38a17ad93dbe166ddcc54aae67d206.jpg: 640x640 6 Potholes, 7.5ms
image 45/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.748bde6c84a85700fe3e4a8ad8e5c83c.jpg: 640x640 6 Potholes, 7.5ms
image 46/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.3d443fe242b14e97a21264faecffde8c.jpg: 640x640 2 Potholes, 7.7ms
image 47/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.565a4282cf6d23cbb37f3ee73567ec2b.jpg: 640x640 3 Potholes, 7.5ms
image 48/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.a0296021fd4252e341077743b0990cb8.jpg: 640x640 3 Potholes, 7.7ms
image 49/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.59ab5bd4ba9f0202cd15f82e7109fc77.jpg: 640x640 1 Pothole, 7.4ms
image 50/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.b8d031ce65af24e0b5e80cab8723335b.jpg: 640x640 1 Pothole, 7.8ms
image 51/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.dfebb14b79daa214f3f87995192a85ae.jpg: 640x640 1 Pothole, 8.3ms
image 52/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.1da712be935af009c0a9e04f0276f225.jpg: 640x640 1 Pothole, 7.3ms
image 53/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.2ac2c551c23ad08dd5599f320c8dd310.jpg: 640x640 1 Pothole, 8.0ms
image 54/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.a808c9e7b2121bd93dbc59332a6d12cb.jpg: 640x640 2 Potholes, 8.5ms
image 55/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.23537a5a480ec24a62b83163a80c4db3.jpg: 640x640 1 Pothole, 12.4ms
image 56/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.8e6e071e8f8e9e9d6f84a1f35766ebf0.jpg: 640x640 1 Pothole, 8.9ms
image 57/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.a5e887bf3c2428e83a81dc48e4f80b0e.jpg: 640x640 1 Pothole, 9.4ms
image 58/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.8beeeda1ce5f8d0cf75e8634f45e6e7e.jpg: 640x640 3 Potholes, 8.1ms
image 59/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.aa2953e739d235b2eddafdea4a1dab6e.jpg: 640x640 4 Potholes, 8.4ms
image 60/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.cf3c2b75ffec6c9e27d18a6b98b67bf9.jpg: 640x640 4 Potholes, 8.2ms
image 61/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.4871608ed18b586f1e4e5f2e440b1320.jpg: 640x640 1 Pothole, 9.6ms
image 62/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.8c7abcd78dd1d16256589acaf80a4182.jpg: 640x640 1 Pothole, 7.2ms
image 63/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.efb59ea51e49ee98c39fcda52e3b6389.jpg: 640x640 1 Pothole, 7.5ms
image 64/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.3145a5860685e71bb38756743d8c5132.jpg: 640x640 6 Potholes, 8.5ms
image 65/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.40ca7474661c6928638675cb6b4f648f.jpg: 640x640 5 Potholes, 8.2ms
image 66/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.f538915b42230d73cd5e22bcb4b06ce6.jpg: 640x640 5 Potholes, 10.6ms
image 67/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.292a7daa7fa877194720b879161d8c40.jpg: 640x640 1 Pothole, 7.8ms
image 68/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.6550c19d889288f83dca4f4c57545348.jpg: 640x640 1 Pothole, 12.0ms
image 69/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.ca379af880817bcbc914bac8fd00d7e6.jpg: 640x640 1 Pothole, 8.5ms
image 70/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.727dc87f7e5fb44ce14cf3878f669aa7.jpg: 640x640 7 Potholes, 15.1ms
image 71/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.a7402de11b1c3f7af0cc32933211e3f6.jpg: 640x640 8 Potholes, 7.8ms
image 72/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.c136dab4f56b39061798109d2420b61f.jpg: 640x640 9 Potholes, 7.8ms
image 73/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.5e69150b156446dbd25a1ba55e83d665.jpg: 640x640 1 Pothole, 14.7ms
image 74/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.5f9ee27d0fe8571af0685b1746b9d7fc.jpg: 640x640 1 Pothole, 7.4ms
image 75/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.e75e7815306ccb81e78d7f8b63857483.jpg: 640x640 (no detections), 7.2ms
image 76/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.260cc574c3efc137da742a912741a3fb.jpg: 640x640 3 Potholes, 12.4ms
image 77/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.4d5c28bfd2ec83debd1fa97e86bbddb4.jpg: 640x640 3 Potholes, 7.5ms
image 78/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.c72b1826e8aaa63d8f1713c2957e93e5.jpg: 640x640 3 Potholes, 7.9ms
image 79/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.4aebae9cb49eac155acea198eb8d4649.jpg: 640x640 1 Pothole, 7.5ms
image 80/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.513297c58b670dfbcee0c02f22a76c9f.jpg: 640x640 1 Pothole, 7.9ms
image 81/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.762e69fb9b1c80f586c501b5b9c515db.jpg: 640x640 1 Pothole, 7.3ms
image 82/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.0ac3472d1668a73f904ec562bcfc43ff.jpg: 640x640 1 Pothole, 13.6ms
image 83/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.145c4607840c2bcac86b2f76c28a7750.jpg: 640x640 1 Pothole, 8.1ms
image 84/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.e9d874018c8eb5296749630aca5603e6.jpg: 640x640 1 Pothole, 7.4ms
image 85/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.6ada3c0e80b409618278df949cd6b7e5.jpg: 640x640 1 Pothole, 7.8ms
image 86/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.b5e4ccd6fb004ba11f36c902116a6dfa.jpg: 640x640 1 Pothole, 7.6ms
image 87/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.f7751cf8a51dd62c4e458caa96bc1906.jpg: 640x640 1 Pothole, 8.1ms
image 88/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.0f6726c68af9fe60c2249e2349f8c049.jpg: 640x640 1 Pothole, 7.7ms
image 89/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.2326fd752be4eb885ad113b533f9ac5c.jpg: 640x640 1 Pothole, 10.0ms
image 90/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.573aa03e77804ed419f1fd0a190ba13a.jpg: 640x640 1 Pothole, 9.8ms
image 91/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.30c2f70058a6fad525c31f57d3952d4d.jpg: 640x640 1 Pothole, 8.2ms
image 92/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.7a54a7e1ad2243629779c48a41b94ca1.jpg: 640x640 1 Pothole, 9.6ms
image 93/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.9506d58945bc1f6e0cd0b6810ca40ad5.jpg: 640x640 1 Pothole, 7.4ms
image 94/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.17911c1b0d9ce482c109ce1e784940b4.jpg: 640x640 1 Pothole, 8.1ms
image 95/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.797a01efcb3ccc31edc05fbd79854344.jpg: 640x640 1 Pothole, 8.9ms
image 96/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.955ee641285edaa97d368881f70563fd.jpg: 640x640 1 Pothole, 8.0ms
image 97/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.24a41f4b91e68f7e35f7d2feff83054d.jpg: 640x640 1 Pothole, 8.4ms
image 98/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.7aa442a433a0074d31ec5ba2de39c2a4.jpg: 640x640 1 Pothole, 8.6ms
image 99/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.8dc9e79be10c01f6f279b4c27266ab65.jpg: 640x640 1 Pothole, 8.4ms
image 100/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.517c7c3c07571b10697a58b567940b58.jpg: 640x640 1 Pothole, 14.9ms
image 101/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.a84bccc6824f607509bb701d8ccd3c87.jpg: 640x640 1 Pothole, 8.8ms
image 102/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.e15dd6f2f2bc285d64fef68fb2d92164.jpg: 640x640 1 Pothole, 8.3ms
image 103/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.1ee928d9f772b66ef1a56bc9ddc702b2.jpg: 640x640 12 Potholes, 8.6ms
image 104/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.9cee00f51ec30b4e0f591b2da2007a10.jpg: 640x640 15 Potholes, 8.4ms
image 105/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.d3d07ce395c3562793390b1003e99d1f.jpg: 640x640 17 Potholes, 8.1ms
image 106/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.28112df3106c2b4485053cd6371a47ef.jpg: 640x640 3 Potholes, 8.3ms
image 107/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.af169e1464071ae718f22b5baebe13a6.jpg: 640x640 3 Potholes, 14.8ms
image 108/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.d694cf94912347ceff66727b95ecb05a.jpg: 640x640 3 Potholes, 8.7ms
image 109/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.374184952caf59cfa399166b0111b640.jpg: 640x640 1 Pothole, 8.5ms
image 110/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.5b5d603ae481652805ea93e3698ea609.jpg: 640x640 1 Pothole, 8.2ms
image 111/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.eec8497f7279810ff44902d6eca0121b.jpg: 640x640 1 Pothole, 12.6ms
image 112/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.07fa25bc5fbd7c2711b9ce8ac28ad6a2.jpg: 640x640 1 Pothole, 8.7ms
image 113/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.766c3d35632f4641ce9d5207a3cadd70.jpg: 640x640 1 Pothole, 8.6ms
image 114/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.8b1343ad71a58c8daf99e2311627f0c8.jpg: 640x640 1 Pothole, 8.3ms
image 115/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.68c4e347a47e89fb46aedd298c2c3e5c.jpg: 640x640 4 Potholes, 8.0ms
image 116/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.738912a20f4c9753a555bf9e7a468851.jpg: 640x640 3 Potholes, 8.3ms
image 117/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.87bfef6ce65eb5df5b6053523e6b4954.jpg: 640x640 3 Potholes, 8.4ms
image 118/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.0cf42e6b552e8f867e76237f36e7eadc.jpg: 640x640 7 Potholes, 11.6ms
image 119/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.3e2f11367531d04d10e9132cf6fe9b8f.jpg: 640x640 7 Potholes, 8.6ms
image 120/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.5795a6265ed32db2ca7965aa7e0174b1.jpg: 640x640 6 Potholes, 9.8ms
image 121/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.94b5851bcded6830d88bef9ed5001cc4.jpg: 640x640 1 Pothole, 8.6ms
image 122/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.dc5bb23e947044e6c4a4572abc3e8213.jpg: 640x640 1 Pothole, 8.7ms
image 123/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.fc3d1df38a5c4e68febeb45b2a132f4a.jpg: 640x640 1 Pothole, 8.0ms
image 124/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.0879365f4e7e435dba77c82134cc5623.jpg: 640x640 2 Potholes, 8.3ms
image 125/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.8658b3f74ded0b4631ae8fb8215d1f97.jpg: 640x640 3 Potholes, 12.9ms
image 126/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.d06e1261d14a5a908632f7f9984b1533.jpg: 640x640 3 Potholes, 8.8ms
image 127/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.216b82e37fe7bf7ace28e129f406915c.jpg: 640x640 2 Potholes, 8.7ms
image 128/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.eab223bbca50b3ff5899899213a6292d.jpg: 640x640 2 Potholes, 15.6ms
image 129/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.f94e3b194754043332e4361c80e7d3db.jpg: 640x640 2 Potholes, 11.8ms
image 130/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.01b4f283d7eaa74981edcc0259ef43cb.jpg: 640x640 3 Potholes, 8.3ms
image 131/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.8c8e224f08327d871ec0791f80a0d43a.jpg: 640x640 4 Potholes, 13.1ms
image 132/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.ea068320394add8a6ff90b4396b79923.jpg: 640x640 4 Potholes, 8.5ms
image 133/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.05122d9316fa0be439f878d8aa337d3d.jpg: 640x640 2 Potholes, 15.0ms
image 134/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.18a3fc9b3f915028b7246fba6b56fd11.jpg: 640x640 2 Potholes, 14.5ms
image 135/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.6d367895786517cfe865fb065be076a5.jpg: 640x640 2 Potholes, 19.0ms
image 136/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.0f296124b79e86f38cda27b6fe05d742.jpg: 640x640 4 Potholes, 10.2ms
image 137/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.890438ae2f4d1bb94198abdd6c181ec8.jpg: 640x640 3 Potholes, 8.1ms
image 138/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.a31a26433609129cbb67d23fcb851296.jpg: 640x640 4 Potholes, 7.9ms
image 139/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.5a781d389cff26a6e2ee08ce9b0498e7.jpg: 640x640 1 Pothole, 9.5ms
image 140/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.8e92fc1a329453e782f06e741d1fc52f.jpg: 640x640 1 Pothole, 8.1ms
image 141/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.e2bb2aecbf0577a45e672425acfed876.jpg: 640x640 1 Pothole, 12.4ms
image 142/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.a45f79f8033191bd09e9ef31736ca58e.jpg: 640x640 1 Pothole, 8.3ms
image 143/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.c349f70d3d136c391a0458b64dd56ebe.jpg: 640x640 2 Potholes, 8.6ms
image 144/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.e58bb252f96f5f83d1d3290b4e6b8041.jpg: 640x640 1 Pothole, 8.5ms
image 145/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.390f967469ceb20da60cbb99af7e2c16.jpg: 640x640 5 Potholes, 8.4ms
image 146/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.5331a19ad3f6b2b37894ae4f0072cea0.jpg: 640x640 5 Potholes, 8.0ms
image 147/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.988cf6bc7c8911ed0169be801328edb7.jpg: 640x640 6 Potholes, 9.0ms
image 148/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.0f181e46348e6b83b3a218d5ea72eef2.jpg: 640x640 5 Potholes, 12.7ms
image 149/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.80838b8e9f59a59d85e9727727b31fd7.jpg: 640x640 4 Potholes, 8.9ms
image 150/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.e47d187e86dd6eb504660921449a7883.jpg: 640x640 5 Potholes, 8.8ms
image 151/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.61b165d52cdeea1e1a674f2e8e3912d5.jpg: 640x640 3 Potholes, 8.5ms
image 152/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.c2e6d6e3806754b1713a36a954367a60.jpg: 640x640 3 Potholes, 8.8ms
image 153/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.f7752000f79cfa2acc35f9a7149ee56d.jpg: 640x640 3 Potholes, 8.7ms
image 154/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.424bbc028685f5de7e9cc866eb988b1e.jpg: 640x640 2 Potholes, 8.5ms
image 155/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.a0f2c54c02aec34c0ca6138b4635c155.jpg: 640x640 2 Potholes, 8.4ms
image 156/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.ba6a2e4e1abc6f5aa893e46932e4df4f.jpg: 640x640 2 Potholes, 12.9ms
image 157/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.3b94cd14bdbf92f4cd57497def72b167.jpg: 640x640 3 Potholes, 8.3ms
image 158/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.9e41f44435259c8fa4baadcdbc5f0f7f.jpg: 640x640 2 Potholes, 8.9ms
image 159/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.a3c099766b4b6cb736f460bf8f3b8377.jpg: 640x640 2 Potholes, 9.1ms
image 160/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.21962dcea10b8f2209ae3fdb9797b6c6.jpg: 640x640 2 Potholes, 8.6ms
image 161/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.7c67c2036a30fd93eed5361cc2f4f1c8.jpg: 640x640 2 Potholes, 8.3ms
image 162/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.bb32e2985b2c29e77029a0452ab20bac.jpg: 640x640 2 Potholes, 8.3ms
image 163/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.12b33adab537f585de7b3d85b848618e.jpg: 640x640 1 Pothole, 8.8ms
image 164/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.1ed8251ec141db216fc5041d7838f5e1.jpg: 640x640 1 Pothole, 12.1ms
image 165/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.2dcc275359fb301602e6957a56e13dc7.jpg: 640x640 1 Pothole, 14.4ms
image 166/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.0d031ce3c207297977b4c60a77d278da.jpg: 640x640 1 Pothole, 14.0ms
image 167/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.47407d69db6694be4d9fa4b3c032d235.jpg: 640x640 1 Pothole, 8.8ms
image 168/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.946ec84ddfa3a53b7b2d407349f08e62.jpg: 640x640 1 Pothole, 8.9ms
image 169/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.046afe1498d1564227421d54b7abdcaa.jpg: 640x640 2 Potholes, 9.0ms
image 170/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.8ac19617548efc70a9281d8dc3794dfd.jpg: 640x640 2 Potholes, 8.6ms
image 171/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.acf7ae50b1e59b9e6e4bbf150e8055a9.jpg: 640x640 2 Potholes, 9.0ms
image 172/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.69c191909f6cc1a946105b08efab6224.jpg: 640x640 2 Potholes, 14.3ms
image 173/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.7352a1a695f0ce198ca67b3f1c186fd6.jpg: 640x640 2 Potholes, 8.6ms
image 174/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.f847c9d3c6c04f210e5e2f3e8eb444d4.jpg: 640x640 2 Potholes, 9.3ms
image 175/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.2677c0fd3f9bec65c04ee82b7d8a000a.jpg: 640x640 1 Pothole, 9.5ms
image 176/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.75e0f6d481468e27710dc5bec3a78ea2.jpg: 640x640 1 Pothole, 9.4ms
image 177/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.d56b832482912f0e78e017e95747fdea.jpg: 640x640 1 Pothole, 8.6ms
image 178/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.31facecf28467c64106a888177c293c4.jpg: 640x640 1 Pothole, 8.6ms
image 179/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.34bf0aa5f308144c68fb1b5f9a1b9423.jpg: 640x640 1 Pothole, 9.5ms
image 180/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.9248a616cb0e3d24aa2bb44288e019ce.jpg: 640x640 1 Pothole, 9.0ms
image 181/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.2f4d36fff66d603c99b22043abc562ba.jpg: 640x640 2 Potholes, 8.9ms
image 182/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.33cf824f2784fd32a3bb22c67f3fdabc.jpg: 640x640 2 Potholes, 8.8ms
image 183/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.77f1227905045ad65f8fda0d6427dbe5.jpg: 640x640 2 Potholes, 8.6ms
image 184/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.307e87780d9f502b50e422c4a80d38c9.jpg: 640x640 2 Potholes, 8.3ms
image 185/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.5d211f0e20e55adab672af34f9df1940.jpg: 640x640 3 Potholes, 9.7ms
image 186/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.f15ca9251a252759a4206b00e88066ea.jpg: 640x640 2 Potholes, 8.7ms
image 187/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.470ca7ba7c3aed3a3ff0ca36725fadb6.jpg: 640x640 1 Pothole, 11.8ms
image 188/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.ad622f815165a84798a7922e02a02876.jpg: 640x640 1 Pothole, 7.7ms
image 189/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.d6e69d2d4e07bc489d1f95b357e47d26.jpg: 640x640 1 Pothole, 15.1ms
image 190/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.ab0a07cd761c2739c0051926b50b0593.jpg: 640x640 3 Potholes, 9.8ms
image 191/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.ce08674b1ae95506239ffe1d5e92d8a1.jpg: 640x640 3 Potholes, 7.7ms
image 192/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.f326f486b62b79f5bc791704fabd90e8.jpg: 640x640 4 Potholes, 15.5ms
image 193/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.3571a1273709f941c4936d6ee8b32214.jpg: 640x640 5 Potholes, 7.8ms
image 194/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.a8d1a4654900167fc8106a1f6144ceff.jpg: 640x640 5 Potholes, 7.7ms
image 195/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.f6e9c0883eac1443308f4f424ae60db4.jpg: 640x640 4 Potholes, 7.9ms
image 196/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.2de27493e9ea7ae685e6a868e05dff51.jpg: 640x640 1 Pothole, 7.4ms
image 197/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.a81f6e206e422229e3021b0dfb06752f.jpg: 640x640 2 Potholes, 7.9ms
image 198/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.f536cb9ac4138da71c6af4d8a3492050.jpg: 640x640 1 Pothole, 12.0ms
image 199/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.171729c8713c604e4d2371b546dfa09f.jpg: 640x640 3 Potholes, 14.1ms
image 200/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.96d2ff93572de0ce5bd564113ece7ad0.jpg: 640x640 3 Potholes, 8.7ms
image 201/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.b732ca94d029e82283eed3228fae8625.jpg: 640x640 3 Potholes, 7.8ms
image 202/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.2f427bf4f80837fb0387c3ee0c38e172.jpg: 640x640 2 Potholes, 8.0ms
image 203/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.5ec8f9ecd96971def7f6e5074c5e0373.jpg: 640x640 3 Potholes, 8.7ms
image 204/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.7ffbfba8e5d63b5f4577f701ca5f7105.jpg: 640x640 3 Potholes, 7.6ms
image 205/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.24dea194a3e0e25703a25e481c89dc9c.jpg: 640x640 4 Potholes, 8.0ms
image 206/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.8d87b09b011bb4b479cea2d472354334.jpg: 640x640 4 Potholes, 10.6ms
image 207/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.be38366f2703b44711a2e9486cc677d3.jpg: 640x640 4 Potholes, 7.5ms
image 208/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.4b35b04139ea1742026f65aa3e2730fe.jpg: 640x640 3 Potholes, 7.8ms
image 209/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.86d64524dfd317ff89ce31ff39a3fa83.jpg: 640x640 3 Potholes, 8.1ms
image 210/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.c2ece8aa91efbc0843296da9f0892b5b.jpg: 640x640 3 Potholes, 8.0ms
image 211/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.c4a7f4f1cff2653d7d2fbc85d91bddca.jpg: 640x640 1 Pothole, 8.1ms
image 212/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.ca0b41b2475176a03280e24fc5d3da7b.jpg: 640x640 1 Pothole, 9.9ms
image 213/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.ff0320a37ee1d098eb9aed6036758287.jpg: 640x640 1 Pothole, 9.5ms
image 214/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.146c5b1af3190071c88676c409c4dad1.jpg: 640x640 2 Potholes, 12.0ms
image 215/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.42022b7bc105da3fc5d269c32db8dbcf.jpg: 640x640 2 Potholes, 9.7ms
image 216/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.f4e625f77be483b3db88308e516192a1.jpg: 640x640 2 Potholes, 7.9ms
image 217/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.16f8930512bc55a715ff702283ede87f.jpg: 640x640 9 Potholes, 7.7ms
image 218/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.544e62b6d885e8e5cc375189b6c13233.jpg: 640x640 9 Potholes, 7.9ms
image 219/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.edbdd29c7a063d66218221470a7e44f5.jpg: 640x640 8 Potholes, 8.1ms
image 220/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.4c915083eb98e45fee4d4f707f89406a.jpg: 640x640 1 Pothole, 8.1ms
image 221/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.d2e46218aa9286f174c99c772f1c1758.jpg: 640x640 1 Pothole, 8.8ms
image 222/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.e0d1623b0c6c69da4a967af45bebbdbd.jpg: 640x640 1 Pothole, 8.2ms
image 223/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.0689172bca1eeb50732cceb0a2d2dbc7.jpg: 640x640 3 Potholes, 9.0ms
image 224/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.236dc9bd798d6f8c56dbfdc5754e3b68.jpg: 640x640 2 Potholes, 8.4ms
image 225/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.4b148a54550e9eeccfacda80024037b1.jpg: 640x640 2 Potholes, 8.4ms
image 226/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.4bf9653396b984986c36623ca51a9b89.jpg: 640x640 3 Potholes, 7.5ms
image 227/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.b060d919f03803a454f2c92fb25e51ec.jpg: 640x640 4 Potholes, 7.7ms
image 228/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.e5609451b471c39a9c9eaf5ff7b3ac94.jpg: 640x640 3 Potholes, 7.8ms
image 229/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.124fb81faf74b03398e066e6d7cbc9eb.jpg: 640x640 1 Pothole, 8.7ms
image 230/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.6df069fb0a914f27571234fbc1aa446b.jpg: 640x640 1 Pothole, 9.3ms
image 231/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.6dfa17e72f379782ec0b743ba60b8543.jpg: 640x640 1 Pothole, 7.4ms
image 232/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.725f375e91986c9cc15b8f0b2b708cb9.jpg: 640x640 3 Potholes, 11.1ms
image 233/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.8978c4919b51dcb2843c4d992a0bc5f6.jpg: 640x640 3 Potholes, 8.2ms
image 234/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.cc1cf985fedc5bc6d7b3fda53980e6f3.jpg: 640x640 3 Potholes, 14.2ms
image 235/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.635564dad2da056faf9127525b2b6cb4.jpg: 640x640 1 Pothole, 8.6ms
image 236/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.892956f0dc513250fbe68acd8c8b91e1.jpg: 640x640 1 Pothole, 7.6ms
image 237/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.dcd45e3458a07cec9ba93918315d2eaf.jpg: 640x640 1 Pothole, 7.5ms
image 238/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.6ecb9b14009286fba81f2e83e3b7f1e1.jpg: 640x640 1 Pothole, 8.1ms
image 239/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.7a11114bc4c2fe1c330b2eff3ec1b609.jpg: 640x640 1 Pothole, 7.6ms
image 240/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.cf414d706efddcb1fd32a8b42bcfd9a7.jpg: 640x640 1 Pothole, 7.5ms
image 241/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.3427acf9ec34ef05f6fe4a10e7280478.jpg: 640x640 1 Pothole, 7.7ms
image 242/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.5b617b77a960e3e18ff122c7c17a3a90.jpg: 640x640 1 Pothole, 8.9ms
image 243/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.8ec9e835434bab69526356b80fb94588.jpg: 640x640 3 Potholes, 8.2ms
image 244/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.531db54959dd774f8f60dee6d86da08e.jpg: 640x640 8 Potholes, 8.2ms
image 245/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.a8973074639f95f416ad6ba0ccbbb03e.jpg: 640x640 7 Potholes, 11.1ms
image 246/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.dbf09b649249bd7101e280f5a14957c6.jpg: 640x640 7 Potholes, 7.5ms
image 247/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.722924f292c69c3948e42a9759882f26.jpg: 640x640 1 Pothole, 8.0ms
image 248/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.eecd3cdfc404f62988bc698f87ae2e4e.jpg: 640x640 1 Pothole, 9.5ms
image 249/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.f1ecc5629bdf5860ae57d7d27dafb299.jpg: 640x640 1 Pothole, 7.8ms
image 250/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.0347198a0674c89124a169b3ede8d1b8.jpg: 640x640 1 Pothole, 7.7ms
image 251/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.0e60f4ceb45a85c359677ee01c088045.jpg: 640x640 1 Pothole, 9.2ms
image 252/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.15feb8e01893318219d223a82a97d069.jpg: 640x640 1 Pothole, 8.0ms
image 253/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.0bbee8fd461407d8eded3b0ea8e80b4c.jpg: 640x640 3 Potholes, 8.9ms
image 254/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.66e723938cac897ced6246535fe9da8a.jpg: 640x640 2 Potholes, 7.8ms
image 255/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.ace8dee3ec0fba3d7a33c3de2c315f0a.jpg: 640x640 2 Potholes, 7.4ms
image 256/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.66a50a098577b349d7bee13dc9640c2e.jpg: 640x640 2 Potholes, 32.6ms
image 257/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.7ea9f287f872540f14495fae6d91e4e6.jpg: 640x640 3 Potholes, 8.1ms
image 258/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.812d218445763c3ed203a0f9458291f9.jpg: 640x640 2 Potholes, 7.5ms
image 259/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.0216ae6ebea5c3912f51c76bdbae6d19.jpg: 640x640 2 Potholes, 8.9ms
image 260/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.76da5b1b10db8580430d527ce9cc2ac3.jpg: 640x640 2 Potholes, 8.1ms
image 261/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.ca567ffa1d1798025a45cf933eb8a5ba.jpg: 640x640 2 Potholes, 7.9ms
image 262/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.3fd6176b3671e235690487a5759a10f9.jpg: 640x640 1 Pothole, 8.2ms
image 263/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.4a69d95662fb642c674f26ff0ef0a5a9.jpg: 640x640 1 Pothole, 9.0ms
image 264/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.5bfd105d64b4c14a88672ff3fdefc4ea.jpg: 640x640 1 Pothole, 9.2ms
image 265/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.08d902c95a9a00f33f6a031a3ce86eaf.jpg: 640x640 1 Pothole, 8.7ms
image 266/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.89fa1c3f06bec1dfef2b96f692db78b6.jpg: 640x640 1 Pothole, 8.0ms
image 267/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.cedbf41ae88b4faa6ca4e3f9907c9678.jpg: 640x640 2 Potholes, 8.5ms
image 268/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.1db425f6267df87504430ef5a0e23709.jpg: 640x640 4 Potholes, 9.3ms
image 269/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.bb6da014663463596e9cdcb39bfa3d40.jpg: 640x640 5 Potholes, 8.7ms
image 270/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.f0b15cd48578f75fff175242f1d8d9d0.jpg: 640x640 4 Potholes, 8.7ms
image 271/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.4b6780fd03079cb3617f1b6c3893f081.jpg: 640x640 (no detections), 10.2ms
image 272/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.95832ba3432d34d8935a2aa3290fcccc.jpg: 640x640 1 Pothole, 8.6ms
image 273/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.e3dd8c6c5c18f97d98bdf92b1ce043b9.jpg: 640x640 1 Pothole, 13.9ms
image 274/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.0a2080c87c7d3188f8356357203b0e56.jpg: 640x640 1 Pothole, 9.4ms
image 275/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.3377a5ba4a0dc953bac7e48a7a02c227.jpg: 640x640 1 Pothole, 9.3ms
image 276/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.8dd21e07b004f7c29a8d4f97e0a3283b.jpg: 640x640 1 Pothole, 8.2ms
image 277/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.4213f6cdf3dee589a56e5aad14500784.jpg: 640x640 2 Potholes, 8.1ms
image 278/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.5e77130a98b6e44f7347f3fa12d59989.jpg: 640x640 1 Pothole, 8.6ms
image 279/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.72255834e8accc349443c0b769bd3cfc.jpg: 640x640 1 Pothole, 9.1ms
image 280/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.0b505406debb2b509daccf0ebbb62d42.jpg: 640x640 2 Potholes, 8.6ms
image 281/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.4facc206ce5e1fac516bd765c34f7972.jpg: 640x640 2 Potholes, 8.2ms
image 282/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.b4c0b6220ddb190aee07dfd59ffd4277.jpg: 640x640 2 Potholes, 8.1ms
image 283/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.2a110ddd516f4ba59951afbf405d42a5.jpg: 640x640 3 Potholes, 8.3ms
image 284/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.a7d61ad38189d19f47b2407d4c2455fb.jpg: 640x640 3 Potholes, 9.7ms
image 285/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.b11d7439f1c22388eac3f6705cb9e9e4.jpg: 640x640 4 Potholes, 9.3ms
image 286/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.31dc8d894956f53d54a5cec0f94c5e79.jpg: 640x640 3 Potholes, 8.3ms
image 287/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.b341c07e4c85101f52a39109ebb299b0.jpg: 640x640 4 Potholes, 10.4ms
image 288/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.e193c5d94e2cc8ef9b365e8d95e806b1.jpg: 640x640 3 Potholes, 11.9ms
image 289/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.4b2ea541aa7fb1277177d6b23ebb385d.jpg: 640x640 4 Potholes, 14.9ms
image 290/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.7d87d7b5337a40b2c80ce816e643376a.jpg: 640x640 3 Potholes, 8.4ms
image 291/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.d00f21d9a21dd0244263a64b8bda2348.jpg: 640x640 3 Potholes, 8.8ms
image 292/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.4eb10110d12e7623cb7be8caf4f66c5a.jpg: 640x640 7 Potholes, 8.8ms
image 293/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.4f06bc1e4c4ca8189e8136ed45695acc.jpg: 640x640 5 Potholes, 8.3ms
image 294/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.9de311e1f9663a4ed2159ebc521295e7.jpg: 640x640 7 Potholes, 8.5ms
image 295/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.19e0e3168e988c6c8f8829f34c68003b.jpg: 640x640 2 Potholes, 10.0ms
image 296/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.d80a26f98663f0c2a92282a15fbf262b.jpg: 640x640 2 Potholes, 8.2ms
image 297/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.e36dc9e60b7e977f6e7d2d1a323b9c73.jpg: 640x640 2 Potholes, 9.1ms
image 298/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.27fc3b4425584f6404f2f0feb976f621.jpg: 640x640 1 Pothole, 8.5ms
image 299/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.74655743f4f3d67bb2e21be9727a7946.jpg: 640x640 1 Pothole, 8.6ms
image 300/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.d45b506908081039adeb183e4ca51da8.jpg: 640x640 1 Pothole, 9.8ms
image 301/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.40ad961da5aeef8f6c97d772ee2b618e.jpg: 640x640 1 Pothole, 9.2ms
image 302/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.d190a911a9e6195bd2a9e3c67869064a.jpg: 640x640 1 Pothole, 8.7ms
image 303/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.ff49694bdd544a47be71713dc6c46593.jpg: 640x640 1 Pothole, 10.9ms
image 304/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.456e08f670a110afa6a40b982a029cba.jpg: 640x640 1 Pothole, 11.5ms
image 305/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.9b0074a18a22ac4ecb7f30b6dabe3fa5.jpg: 640x640 1 Pothole, 9.6ms
image 306/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.ad6fbe4b6c5100ec699f1262c74a5988.jpg: 640x640 1 Pothole, 8.5ms
image 307/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.6bb67326dc3fab2b66c9c65a3364504c.jpg: 640x640 2 Potholes, 8.7ms
image 308/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.de0280b56ab0a3f21fab3b5986a16080.jpg: 640x640 2 Potholes, 8.3ms
image 309/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.f71278c900f04d9ef934d1671e450fbf.jpg: 640x640 2 Potholes, 8.9ms
image 310/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.1becdc6413b7b22fdf55ade9f266316e.jpg: 640x640 3 Potholes, 9.0ms
image 311/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.d9c8cdd8aea8314208624edb692b09cb.jpg: 640x640 3 Potholes, 9.0ms
image 312/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.da6e0c0a3dd3854e5710bcbe50478725.jpg: 640x640 3 Potholes, 9.1ms
image 313/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.9f723a6b8ef272c7a5899faf7f892aee.jpg: 640x640 1 Pothole, 8.6ms
image 314/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.a0b3e7cf4174b760f731630a0d8ffcda.jpg: 640x640 1 Pothole, 8.2ms
image 315/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.aa439f808046db1dd790b1dd73aec45f.jpg: 640x640 1 Pothole, 8.4ms
image 316/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.0ec6700cefc477019e71e49c69ad09c0.jpg: 640x640 4 Potholes, 8.7ms
image 317/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.50845450b158301ab47748beb98fcf79.jpg: 640x640 6 Potholes, 8.4ms
image 318/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.577cbbb4c72285178adaa8c046e4f59d.jpg: 640x640 4 Potholes, 8.1ms
image 319/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.4210790f4f714436b3d5ee9671a99005.jpg: 640x640 3 Potholes, 8.5ms
image 320/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.6280cd42dfe06a2d66148f5b5af6eb1b.jpg: 640x640 3 Potholes, 8.2ms
image 321/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.a2e98283cbb1e83a8af07620af2cb3d6.jpg: 640x640 4 Potholes, 9.5ms
image 322/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.159340ca71da523b0e2a61122f85d352.jpg: 640x640 1 Pothole, 8.7ms
image 323/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.1dbe9dca4ca6a1f1f88b41787b9a691c.jpg: 640x640 1 Pothole, 9.3ms
image 324/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.a5ea9340a3f317eab9bc842a8d252835.jpg: 640x640 1 Pothole, 10.3ms
image 325/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.04b3324ec3044431090e8b9359b88bf7.jpg: 640x640 3 Potholes, 13.5ms
image 326/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.9d3f63dd5136bc8b5e16b4fdf3e5b5e7.jpg: 640x640 4 Potholes, 7.9ms
image 327/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.f7b0fe3cd7b84157379a0c10372ef0fc.jpg: 640x640 4 Potholes, 8.6ms
image 328/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.aa73fb95553763a3d73a6b849fa4aa11.jpg: 640x640 1 Pothole, 8.6ms
image 329/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.bc36d7a2ab5872952f3237e3cb9a0b06.jpg: 640x640 2 Potholes, 8.9ms
image 330/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.bd5f146daa5ac308b6b501d1c6f1d33d.jpg: 640x640 1 Pothole, 16.8ms
image 331/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.14efc266ef488a27f59064a50d804ca0.jpg: 640x640 7 Potholes, 8.4ms
image 332/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.a751fa82eb82745f4b5f94656b4d1455.jpg: 640x640 7 Potholes, 8.7ms
image 333/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.b4fc5446d26d4211eece93e58f12ae73.jpg: 640x640 8 Potholes, 8.7ms
image 334/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.bfb22269f25cce0b5e7ff3054f61734b.jpg: 640x640 8 Potholes, 9.1ms
image 335/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.d1dd38a0e09eda8c0d4239a5bdedd0d5.jpg: 640x640 6 Potholes, 10.4ms
image 336/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.e6fd78cbf2dc3c11a24ccdc8ddc5ee25.jpg: 640x640 7 Potholes, 8.6ms
image 337/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.4152b4c3ac522f79019ca14cc242eb95.jpg: 640x640 2 Potholes, 8.4ms
image 338/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.dfe14e39a7d78d0edb998700007564e1.jpg: 640x640 2 Potholes, 8.5ms
image 339/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.e7e49a6cb4809947d14a95047f49964e.jpg: 640x640 2 Potholes, 8.1ms
image 340/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.15d03eb1f1aea5ae78f46547ddb947b5.jpg: 640x640 3 Potholes, 8.5ms
image 341/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.1ef52a6b450c206cfdcc425311a07859.jpg: 640x640 3 Potholes, 8.5ms
image 342/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.2f5901a40332f282bcafe34b90f4f5ec.jpg: 640x640 3 Potholes, 8.4ms
image 343/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.1494a9c164c52d1cd9b45dda0e1b5bab.jpg: 640x640 1 Pothole, 8.2ms
image 344/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.848346f3e53f08683c1c17d6f1f7437e.jpg: 640x640 1 Pothole, 8.9ms
image 345/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.f4098546b7c8b3af5f3463c6f63950dd.jpg: 640x640 1 Pothole, 11.4ms
image 346/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.59141047e39ac5b57f2f9b1f6a763936.jpg: 640x640 1 Pothole, 9.1ms
image 347/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.64732a7585f4f1dc942fda7dce11b947.jpg: 640x640 1 Pothole, 15.9ms
image 348/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.8497a34a9e5ae4ee66830f050bbd69ac.jpg: 640x640 1 Pothole, 8.2ms
image 349/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.6e6834e9f26a64c34edc2093c2133e77.jpg: 640x640 2 Potholes, 9.9ms
image 350/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.bc29e6e5e745094cb40ab4d9023e2ad3.jpg: 640x640 2 Potholes, 8.6ms
image 351/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.c7c54a2bd8c106f1e8959e88238d0f3c.jpg: 640x640 2 Potholes, 8.4ms
image 352/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.149b89f603991e65409d2c817ffa8def.jpg: 640x640 4 Potholes, 12.6ms
image 353/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.c953bfbb7502053e8a904197dc52e925.jpg: 640x640 4 Potholes, 8.6ms
image 354/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.caa8259752f70e86575c84bdc5a6ac3d.jpg: 640x640 4 Potholes, 8.3ms
image 355/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.b4c9d0f7d582f53d9355532af217097e.jpg: 640x640 1 Pothole, 8.8ms
image 356/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.f81c589abb7f7593acd9a66bd74c5d7f.jpg: 640x640 1 Pothole, 8.2ms
image 357/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.fa5cabd66a044525bb74f3c49acf54fe.jpg: 640x640 1 Pothole, 8.3ms
image 358/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.28fccf586765c2246d9b66e5eb8f3584.jpg: 640x640 4 Potholes, 12.6ms
image 359/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.43a237ef9bd9dd28d4f798a87853f1fa.jpg: 640x640 3 Potholes, 11.3ms
image 360/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.73b9192a4cd0112e00efe9158aff9459.jpg: 640x640 3 Potholes, 14.8ms
image 361/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.27ea296703d09cf2fc0438826eb25216.jpg: 640x640 6 Potholes, 8.8ms
image 362/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.755180833958d9091b3bb6a24b34f8c9.jpg: 640x640 7 Potholes, 8.4ms
image 363/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.8f2076aea9dd8405d1992210d01df6ef.jpg: 640x640 6 Potholes, 8.2ms
image 364/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.5c0e8c26b2a5c454bf448e0b6f2ecd97.jpg: 640x640 2 Potholes, 9.0ms
image 365/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.6f72a29392e37293dead7ab866cff716.jpg: 640x640 2 Potholes, 8.9ms
image 366/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.c4aa15eeb12eb5d97a7d89fc47d7cca6.jpg: 640x640 2 Potholes, 9.2ms
image 367/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.6cf12918112f73e428cb65a891665604.jpg: 640x640 2 Potholes, 9.0ms
image 368/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.8dee3d4ab5ccd2161b6e520c20a0f812.jpg: 640x640 2 Potholes, 8.9ms
image 369/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.8f0271d2f7004b60ecb8bceed3c799c6.jpg: 640x640 3 Potholes, 8.8ms
image 370/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.3432cc48d4f6e7d8002d6eb4642495ce.jpg: 640x640 1 Pothole, 8.6ms
image 371/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.8288a409c841a344ed2174080fddc6a5.jpg: 640x640 1 Pothole, 9.0ms
image 372/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.c898c9588e06414254eb3a8101ade893.jpg: 640x640 1 Pothole, 8.7ms
image 373/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.0a72277f1c31da47eb26ecbb3b7e6296.jpg: 640x640 1 Pothole, 8.9ms
image 374/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.42f875819ed5ac0facfa51b46a123fc2.jpg: 640x640 1 Pothole, 13.0ms
image 375/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.61dffd0851eee83ef24f448d88ffeebe.jpg: 640x640 1 Pothole, 12.5ms
image 376/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.0df6511df9c5cff60f86c536ab1635a1.jpg: 640x640 2 Potholes, 10.1ms
image 377/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.d07142e52129da403acd41a7a03fabae.jpg: 640x640 3 Potholes, 15.0ms
image 378/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.d864bfac7ff1440f8c98557209aa3c0f.jpg: 640x640 2 Potholes, 12.9ms
image 379/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.1cc262720c9af6dae71db8520773160b.jpg: 640x640 1 Pothole, 14.7ms
image 380/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.7ebc863c89590ff2a83f607dcbc68e34.jpg: 640x640 1 Pothole, 10.1ms
image 381/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.9beb79771a7b6709183e6cca511ff830.jpg: 640x640 1 Pothole, 11.5ms
image 382/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.17df77133740bc613a4696554928cd5c.jpg: 640x640 (no detections), 12.5ms
image 383/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.9e660e4d87ccc3b8a3bb1d2bf2745aa8.jpg: 640x640 2 Potholes, 12.1ms
image 384/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.f64415f2a4f04934c63eb9e6ddc58b03.jpg: 640x640 1 Pothole, 10.9ms
image 385/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.554ed8a1140e2e47539b5825358f3491.jpg: 640x640 4 Potholes, 9.7ms
image 386/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.7b2fd4f45f1134c636d1a6fe51744d46.jpg: 640x640 4 Potholes, 14.8ms
image 387/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.93663c16c298ed591b91eadfc6e144ae.jpg: 640x640 5 Potholes, 11.2ms
image 388/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.0f4643d64aafaa72e5e291cb8bdfae57.jpg: 640x640 5 Potholes, 10.6ms
image 389/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.5b9be4976067ff481a06a5d7f1916133.jpg: 640x640 6 Potholes, 13.9ms
image 390/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.cbf21b0811a22af9d7b2ebaffbd1d938.jpg: 640x640 7 Potholes, 10.1ms
image 391/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.a3cbf0b1296da7cd3ea5d46525c3b5ad.jpg: 640x640 1 Pothole, 8.9ms
image 392/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.a889a66f2a2a27646c6d2102e5b2fb17.jpg: 640x640 1 Pothole, 9.7ms
image 393/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.b57094138ac0e7270328a9956b2f616e.jpg: 640x640 1 Pothole, 8.8ms
image 394/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.2909e1821a38907edf8d4f9d87cfa7fa.jpg: 640x640 1 Pothole, 8.6ms
image 395/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.6184619642f841a8598f0fee9f9cb770.jpg: 640x640 1 Pothole, 9.3ms
image 396/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.6e835a0b390d9b7815c33f5834b17a42.jpg: 640x640 1 Pothole, 8.9ms
image 397/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.0c7a3fd9a3840f28576edfe095f5b2c8.jpg: 640x640 2 Potholes, 9.6ms
image 398/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.2d988998b2a995bdee0f0282803e4801.jpg: 640x640 1 Pothole, 9.3ms
image 399/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.deadb4c9f8357cd2f7d51f91cb1da866.jpg: 640x640 2 Potholes, 9.5ms
image 400/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.90193421f8c21ded95e0cbf404f513dd.jpg: 640x640 2 Potholes, 15.0ms
image 401/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.a3ea467a7cc80896f04d44bea680785d.jpg: 640x640 2 Potholes, 9.2ms
image 402/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.fa08a66eed53518165efed59a5ab8eb4.jpg: 640x640 2 Potholes, 9.6ms
image 403/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.2fdb4a020ffa343ae74099d9d2876c41.jpg: 640x640 5 Potholes, 9.5ms
image 404/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.38a2bdb803b4ab772ebd6e40119129f8.jpg: 640x640 6 Potholes, 9.4ms
image 405/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.9841cb1e9b954b905fb2c6573c987199.jpg: 640x640 5 Potholes, 9.2ms
image 406/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.1d994545861b8acd262681fa0d99058b.jpg: 640x640 1 Pothole, 9.9ms
image 407/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.60c38b7dd52f66a6bf7fd05386915aef.jpg: 640x640 1 Pothole, 9.7ms
image 408/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.9cb2afb0020b7d0e4220ed2f05fc3014.jpg: 640x640 1 Pothole, 9.0ms
image 409/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.1ddbaa9733534658408a1a14372ef0b9.jpg: 640x640 6 Potholes, 8.8ms
image 410/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.2d65914b2455aaeff16e8ef4321a9ae2.jpg: 640x640 7 Potholes, 10.7ms
image 411/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.fe9146427e9147a64aa2edd89579fa80.jpg: 640x640 6 Potholes, 9.0ms
image 412/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.58d537e75af0a9fe40651c5c9e5c6f10.jpg: 640x640 1 Pothole, 11.6ms
image 413/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.5b8acd3a5f571d5d7e245e1f950b92cc.jpg: 640x640 1 Pothole, 9.2ms
image 414/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.93cf2350f3e2eb8b0e28c90904582e06.jpg: 640x640 1 Pothole, 8.7ms
image 415/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.7019bcfb7ed85d62a0068bb4d90894d6.jpg: 640x640 5 Potholes, 9.1ms
image 416/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.aa2fce633443ee1d8c81896a8ea32dae.jpg: 640x640 5 Potholes, 9.0ms
image 417/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.e7df3aab64f144506e0d276e972a5f73.jpg: 640x640 4 Potholes, 11.6ms
image 418/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.5dc1fecc0c1bd209ca05c88618583504.jpg: 640x640 4 Potholes, 9.0ms
image 419/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.821cd6dd9ff8fdcc6286183f5688755a.jpg: 640x640 4 Potholes, 9.1ms
image 420/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.fcdd3609bc1d58a34086a5a3e6ce2097.jpg: 640x640 4 Potholes, 9.8ms
image 421/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.47ec4246b71311c95725c8e5c02049a3.jpg: 640x640 2 Potholes, 8.9ms
image 422/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.4a53c38246579af08ffa2398e0d809aa.jpg: 640x640 2 Potholes, 9.2ms
image 423/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.d407eb770f6e539c7d1021089da068bc.jpg: 640x640 2 Potholes, 9.0ms
image 424/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.50fba6db0c31398bb0ad36b22f1cf88f.jpg: 640x640 1 Pothole, 9.2ms
image 425/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.9be8ea96b8bb643747babec0e006e3a8.jpg: 640x640 1 Pothole, 10.3ms
image 426/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.cd93dd54b669257758fd0cdafe4f0032.jpg: 640x640 1 Pothole, 13.5ms
image 427/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.3af45c18af9183dbab32f9e489034912.jpg: 640x640 3 Potholes, 9.1ms
image 428/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.76bee172574bbacef55e6935f031bf20.jpg: 640x640 2 Potholes, 9.3ms
image 429/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.b88fd61a801b35b27593f7fcbfed4f1b.jpg: 640x640 2 Potholes, 8.9ms
image 430/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.2b6a7b01bb03728cc1c166db16e462e5.jpg: 640x640 1 Pothole, 9.0ms
image 431/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.998892ecacb90555cc17a10e7717e639.jpg: 640x640 1 Pothole, 8.9ms
image 432/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.a966d2dffd8b171b302656a73d5b9d35.jpg: 640x640 1 Pothole, 9.1ms
image 433/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.1d9a2cc87b0162c31ffde047cca87a81.jpg: 640x640 1 Pothole, 8.9ms
image 434/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.6219b6cecf8a84cc4bd3139144ade94f.jpg: 640x640 1 Pothole, 9.4ms
image 435/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.b1224cd0b28b41a38580f8f73315e5be.jpg: 640x640 1 Pothole, 9.8ms
image 436/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.4c610d0dfdc177368e2334a82ff5513a.jpg: 640x640 12 Potholes, 8.7ms
image 437/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.55be0618279efba17a40682b25ec9fab.jpg: 640x640 10 Potholes, 8.7ms
image 438/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.98e8661b5363f6c6bcf399738c291cf2.jpg: 640x640 11 Potholes, 9.2ms
image 439/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.43407daa6e772a254285f6bf1098a9b2.jpg: 640x640 3 Potholes, 9.1ms
image 440/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.5924896fbc8c112511de0c67db59435b.jpg: 640x640 3 Potholes, 9.0ms
image 441/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.97039c9e51a9baa0832be4ebd044110d.jpg: 640x640 3 Potholes, 8.6ms
image 442/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.4e80309c7e97b759c02f198b4f8258e0.jpg: 640x640 5 Potholes, 11.9ms
image 443/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.9bb1142dec3532e4e8b716d3a438ac05.jpg: 640x640 6 Potholes, 11.5ms
image 444/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.a52b175e07343220015b707b9886e0e1.jpg: 640x640 6 Potholes, 10.3ms
image 445/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.323d61640ba6fcc13042b787260e36bb.jpg: 640x640 (no detections), 9.3ms
image 446/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.87ee237323b54bf65900f2fe8742e27b.jpg: 640x640 1 Pothole, 8.1ms
image 447/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.c49fc76803dd19f43665c0ced1377750.jpg: 640x640 1 Pothole, 8.6ms
image 448/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.002253fdb0ed4584e018df6ffa261117.jpg: 640x640 4 Potholes, 8.2ms
image 449/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.0a7c7409d5dc54a17f739f3fcc1dfbfb.jpg: 640x640 4 Potholes, 8.3ms
image 450/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.9c136160d287bbdaaaa5e6027f75ba97.jpg: 640x640 4 Potholes, 8.1ms
image 451/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.46a9e2047dced3e94c4fa2aab121859b.jpg: 640x640 13 Potholes, 10.3ms
image 452/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.5205af7f7d0021ecd8ac84b895d7be99.jpg: 640x640 11 Potholes, 15.4ms
image 453/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.ce4479c25a7c7d6c8b8d001c488a4f6d.jpg: 640x640 13 Potholes, 8.1ms
image 454/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.98225472f61e9de4245a1da0fc036230.jpg: 640x640 1 Pothole, 13.4ms
image 455/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.cd2ef0884568491ec2ce61a16f085324.jpg: 640x640 1 Pothole, 13.9ms
image 456/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.d21f3ba7cea2b4ce92516d08a7ea0c6d.jpg: 640x640 1 Pothole, 8.0ms
image 457/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.792c2b69462ae79fca0cca74330fe0e7.jpg: 640x640 3 Potholes, 9.1ms
image 458/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.85ffbef727ecf81dbdc795cf0071fde4.jpg: 640x640 3 Potholes, 8.6ms
image 459/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.8d4273fdb3b241213a5685129666cde6.jpg: 640x640 2 Potholes, 8.2ms
image 460/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.d1a4a881471530c27e8e6acefaae408d.jpg: 640x640 1 Pothole, 8.5ms
image 461/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.e2e29a600dcb8450df911104cf88b38d.jpg: 640x640 1 Pothole, 8.6ms
image 462/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.ec1e5c4b6a23a9196e33d1937e2fddcf.jpg: 640x640 1 Pothole, 10.9ms
image 463/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.102a71b41c699ef91c98ee9acb233241.jpg: 640x640 10 Potholes, 8.0ms
image 464/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.161161ebb6d47b347f2c6012b1c88898.jpg: 640x640 12 Potholes, 11.1ms
image 465/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.81490c823fe0f5ba5fc351b36c4fab79.jpg: 640x640 13 Potholes, 10.3ms
image 466/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.387d558e33ac4c0afd2b684708d66271.jpg: 640x640 1 Pothole, 8.1ms
image 467/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.aeb00c47b3179ead074b8f7b52971655.jpg: 640x640 1 Pothole, 8.1ms
image 468/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.eb289e54650f25791d195ce8f1936cf8.jpg: 640x640 1 Pothole, 8.1ms
image 469/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.1cfd00374439fd72effee65dee2cfbf3.jpg: 640x640 1 Pothole, 8.1ms
image 470/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.44efc10266e3c4cb78efde437755b21f.jpg: 640x640 2 Potholes, 8.1ms
image 471/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.a7c2022cd08be88cf40fb7473457b1bd.jpg: 640x640 2 Potholes, 9.8ms
image 472/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.20f2248677b69cd0b78705416c578c8f.jpg: 640x640 5 Potholes, 8.5ms
image 473/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.364ad6841f1f703e567868636d3c5d9d.jpg: 640x640 4 Potholes, 8.1ms
image 474/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.91f845ebe6009e9c3be546fa34f1fb62.jpg: 640x640 6 Potholes, 13.4ms
image 475/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.0dbe6d0d6778748a85926379c5f2e9e2.jpg: 640x640 1 Pothole, 8.3ms
image 476/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.842cdce727f91b17dbe3c3da0eb40f53.jpg: 640x640 1 Pothole, 8.8ms
image 477/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.f00b26bc9e0e6d37dfc28fb9dcca8d31.jpg: 640x640 1 Pothole, 8.8ms
image 478/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.40eb24734e3476c926a4c70fd547500c.jpg: 640x640 2 Potholes, 8.7ms
image 479/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.c2b4badba5de7ededb5266fa40bff815.jpg: 640x640 1 Pothole, 8.8ms
image 480/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.e5da98374205a9ad95cb1355a5d30d9a.jpg: 640x640 1 Pothole, 9.1ms
image 481/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.123096f07316bdbbb775d4e0edbfcb5e.jpg: 640x640 1 Pothole, 8.8ms
image 482/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.56d84fad76218d5963847d758616e653.jpg: 640x640 1 Pothole, 9.5ms
image 483/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.684fdc990a5a35d7a5d296857475e65d.jpg: 640x640 1 Pothole, 8.9ms
image 484/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.2bdafbee1a88e6d2a7fdf3367073e72e.jpg: 640x640 2 Potholes, 8.9ms
image 485/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.c3f2aadaa48b640a80c3ab44e41ffb04.jpg: 640x640 3 Potholes, 14.0ms
image 486/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.e85f33f618c8853f1b77a75be13c5a95.jpg: 640x640 2 Potholes, 11.8ms
image 487/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.51113a90d61bab00d4fe0edcd5e45d9b.jpg: 640x640 1 Pothole, 8.9ms
image 488/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.e2281030be53c236e0e2f7731df0f5b3.jpg: 640x640 1 Pothole, 14.1ms
image 489/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.e5f176bec46993c0c6cda6588e9d5ecf.jpg: 640x640 1 Pothole, 12.4ms
image 490/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.87156b9d129afc59b232dcc6247af143.jpg: 640x640 4 Potholes, 14.0ms
image 491/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.9ebbae06b203eacb7891199e3ae03e78.jpg: 640x640 5 Potholes, 9.5ms
image 492/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.e2570badb95698d083c54eec726d833c.jpg: 640x640 3 Potholes, 16.4ms
image 493/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.3b5e34d314c7ded93c3733fce130b12a.jpg: 640x640 3 Potholes, 10.2ms
image 494/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.948fb2d38ed70096fb1c644ab1e89973.jpg: 640x640 3 Potholes, 10.4ms
image 495/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.b0bf8384c5c25bbefa58c5f1e0893b5d.jpg: 640x640 3 Potholes, 9.3ms
image 496/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.5220d64d0af700ca8a131e4a7015591a.jpg: 640x640 4 Potholes, 14.6ms
image 497/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.56803c885d93883808e18e5177fb7bfc.jpg: 640x640 4 Potholes, 10.2ms
image 498/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.75b74368c26af7be08174514a5e86a35.jpg: 640x640 4 Potholes, 14.2ms
image 499/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.152a3d1b716ce34ef95d003bf13d19e3.jpg: 640x640 1 Pothole, 9.1ms
image 500/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.521af54aebbf6c4a9777b1a21b2aa1a6.jpg: 640x640 1 Pothole, 10.0ms
image 501/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.a9b5278454dd0e6b846f8f5b345c8c0a.jpg: 640x640 1 Pothole, 14.4ms
image 502/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.03cbcc554416b49037040fba4614781a.jpg: 640x640 1 Pothole, 9.8ms
image 503/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.1de461b1d76feb49d4f027f59f73b1ff.jpg: 640x640 1 Pothole, 9.3ms
image 504/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.a69a7de19ef308ef7ee254d1016bbc97.jpg: 640x640 1 Pothole, 12.9ms
image 505/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.a8c2971b57a19e0180c662e4263aa9b5.jpg: 640x640 2 Potholes, 9.6ms
image 506/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.d32464e992476781dea9e98988a24869.jpg: 640x640 2 Potholes, 9.9ms
image 507/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.f66059d5449c804a491dfe941e69a338.jpg: 640x640 2 Potholes, 12.4ms
image 508/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.4842e778156eb9f2ba5cf237fe3e4a62.jpg: 640x640 2 Potholes, 13.8ms
image 509/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.71c7e5d6a9c5da8e4043d68da5539b8e.jpg: 640x640 2 Potholes, 9.5ms
image 510/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.8761505829f0631199e1d3daa72bea42.jpg: 640x640 2 Potholes, 13.8ms
image 511/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.1d4e40786715d3c83bace206f962c042.jpg: 640x640 1 Pothole, 9.8ms
image 512/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.72ed26dca533a7e479c08103a5569c8f.jpg: 640x640 1 Pothole, 10.1ms
image 513/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.84f5afae7a869cf8e987823d48ac52ea.jpg: 640x640 1 Pothole, 10.0ms
image 514/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.58b2ce2cbcbc68eb15a507b2cf8643e2.jpg: 640x640 2 Potholes, 9.5ms
image 515/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.cd5aa1c41d3e62814135dde19300f171.jpg: 640x640 3 Potholes, 9.8ms
image 516/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.eb89bc0d42a73c41261305e01a9138f8.jpg: 640x640 3 Potholes, 13.6ms
image 517/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.b9479d0a39352215db193b6877e389ff.jpg: 640x640 1 Pothole, 9.8ms
image 518/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.d1996e7e3608d23e5111b7e3f95a5353.jpg: 640x640 1 Pothole, 9.7ms
image 519/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.ffefe6a973c89146c61be0770eed07c3.jpg: 640x640 1 Pothole, 9.5ms
image 520/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.17e79b0608bc082d9380d713fb69f5ef.jpg: 640x640 5 Potholes, 9.7ms
image 521/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.1f39da1d67e7044320a0a602d9819741.jpg: 640x640 7 Potholes, 9.9ms
image 522/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.9fea650aedf412fa2559d06c40de20b9.jpg: 640x640 5 Potholes, 9.7ms
image 523/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.370eca9f98e828703d153a162dba5233.jpg: 640x640 3 Potholes, 9.5ms
image 524/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.50f47f18cb6f3fb3650fe72d391d9187.jpg: 640x640 3 Potholes, 9.6ms
image 525/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.881c629f5ecaecfe726c74a522b8decb.jpg: 640x640 3 Potholes, 12.3ms
image 526/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.3600a16f8f27cc0334db7f049f787eb1.jpg: 640x640 1 Pothole, 10.2ms
image 527/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.4ef818f9e780452ddfb899a2a2b6b03a.jpg: 640x640 1 Pothole, 9.6ms
image 528/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.84ff02582ef46f86d24bc848af4be07b.jpg: 640x640 1 Pothole, 10.0ms
image 529/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.2b21a6093d6fa16efa900074dc3542cd.jpg: 640x640 1 Pothole, 11.9ms
image 530/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.821c1245c0e331fa2bf691e53b6d5d99.jpg: 640x640 1 Pothole, 11.9ms
image 531/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.b5aea8cb48e0a04950551fd41e277ea6.jpg: 640x640 1 Pothole, 14.0ms
image 532/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.37977cf11bbe714965571c19d72ffee0.jpg: 640x640 2 Potholes, 9.6ms
image 533/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.b78c512c8993fd44bdb300776d9dc3f4.jpg: 640x640 2 Potholes, 10.1ms
image 534/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.d633fdb04731410dc8d1d1da15a1363a.jpg: 640x640 1 Pothole, 14.8ms
image 535/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.0940348a848c8c97f3fff9383cb3cdc8.jpg: 640x640 19 Potholes, 9.5ms
image 536/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.1174887817ec51f80c793c0f75927824.jpg: 640x640 16 Potholes, 10.7ms
image 537/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.f773855cfccc522535461bb0d18add8a.jpg: 640x640 13 Potholes, 9.1ms
image 538/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.2940a75b7dd32070029f18fa382ebdc5.jpg: 640x640 (no detections), 9.4ms
image 539/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.d35f113f002fcda07300a87c4953d158.jpg: 640x640 (no detections), 9.3ms
image 540/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.fb982b0515cfdf43b2ced2b2b087b90d.jpg: 640x640 (no detections), 11.5ms
image 541/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.17b7362dd7e828ab11f01d0a23db3a50.jpg: 640x640 4 Potholes, 10.1ms
image 542/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.4aea4d06478697bd7b70b72cd80d1546.jpg: 640x640 4 Potholes, 9.2ms
image 543/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.e9cd27fe43663beff58ee6e1f8f7f3d2.jpg: 640x640 4 Potholes, 10.8ms
image 544/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.3cc5232b879d313c05dc30ad7b066f99.jpg: 640x640 4 Potholes, 9.6ms
image 545/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.40b75b0e55a33c21bc33826831384287.jpg: 640x640 4 Potholes, 9.9ms
image 546/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.add0f9e0bd6d5cd8a32bde8eac8b1c9f.jpg: 640x640 5 Potholes, 10.0ms
image 547/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.3a6cb54980b1b14196158b140c277034.jpg: 640x640 1 Pothole, 9.9ms
image 548/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.d7c110298e8deb6c82e6a13278880bc1.jpg: 640x640 1 Pothole, 9.3ms
image 549/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.e87935b40ac72eeef1e183a1b784e3e9.jpg: 640x640 1 Pothole, 9.9ms
image 550/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.141623e970a3b93aa37e180a3efb32b8.jpg: 640x640 2 Potholes, 9.2ms
image 551/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.dbb4e5f29da50d7f69800bd02df7cd28.jpg: 640x640 3 Potholes, 9.1ms
image 552/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.fef279db67c02cffe5e03d2f062e76c7.jpg: 640x640 2 Potholes, 9.6ms
image 553/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.da02919be110cad52f54add553bf8ff6.jpg: 640x640 2 Potholes, 9.3ms
image 554/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.dba8be87e1cad6fbbc6f68728f95a85d.jpg: 640x640 3 Potholes, 9.2ms
image 555/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.f986b908d11e3ccfab5acb989bc9aa7b.jpg: 640x640 2 Potholes, 9.2ms
image 556/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.916c6c1f6b88b55f48b08e48481fe26f.jpg: 640x640 1 Pothole, 9.7ms
image 557/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.99d4097fac96d5f035d066f05bd3dcac.jpg: 640x640 1 Pothole, 12.9ms
image 558/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.c50896cfc9b1facb5cd4234bb9be07b6.jpg: 640x640 1 Pothole, 9.4ms
image 559/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.4db592c400a3bacb104e601c50c1fcd0.jpg: 640x640 9 Potholes, 15.8ms
image 560/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.d3357165b543f6d3e0f729dfa3373855.jpg: 640x640 9 Potholes, 14.7ms
image 561/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.f52085b2d1744eeb56ed5a4b8ba0fb0f.jpg: 640x640 8 Potholes, 9.3ms
image 562/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.0b69a3e42d0f31491655adaa801c3160.jpg: 640x640 2 Potholes, 9.1ms
image 563/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.7047af1ffe9d3d01ef41591660a7bd37.jpg: 640x640 2 Potholes, 9.3ms
image 564/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.c8d57f2324c265fbe81623987f86e3d8.jpg: 640x640 2 Potholes, 9.7ms
image 565/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.4d2787d8d27bef19c2759899a13581ad.jpg: 640x640 2 Potholes, 9.5ms
image 566/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.5e808c2edeb8c3db416e41b5cf956575.jpg: 640x640 2 Potholes, 9.2ms
image 567/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.74ff92157ffacab71cc6f120cb5663a6.jpg: 640x640 2 Potholes, 9.3ms
image 568/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.1e8c9b6d903b795ead837d1334fbe4ff.jpg: 640x640 1 Pothole, 9.9ms
image 569/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.dbbb1c368f5ada95ebf45d45838b1bd7.jpg: 640x640 1 Pothole, 9.6ms
image 570/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.dfa9d788bc69cea17fc9c3308d1668a7.jpg: 640x640 2 Potholes, 11.3ms
image 571/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.7bb3eef4deaf2aa9c2fb506c168e3f77.jpg: 640x640 2 Potholes, 9.2ms
image 572/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.a71dc55407736290b223f5ac71e8f714.jpg: 640x640 2 Potholes, 9.1ms
image 573/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.c7dd071d0249ce1a01f71938c20eec2e.jpg: 640x640 2 Potholes, 9.2ms
image 574/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.b885bd57535b8adc199e02edae6a24e9.jpg: 640x640 1 Pothole, 10.0ms
image 575/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.c5a8cb20f04ee8a90e2295b8e74a9dd1.jpg: 640x640 1 Pothole, 14.2ms
image 576/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.ce935f81e259f69e3b8930f080141ac5.jpg: 640x640 1 Pothole, 14.2ms
image 577/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.07110750200ea396e69160ea5e20ce7c.jpg: 640x640 2 Potholes, 9.2ms
image 578/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.b5c407806790722e3104e1521d054f67.jpg: 640x640 1 Pothole, 11.9ms
image 579/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.e7a3996bac750b9ba88cc570c1aad418.jpg: 640x640 2 Potholes, 9.2ms
image 580/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.5f35e42f4f2abf32c388f70cd219d8cb.jpg: 640x640 3 Potholes, 14.8ms
image 581/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.68853a3577e0a03df1d073ae0713d353.jpg: 640x640 3 Potholes, 14.0ms
image 582/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.88ad29d468c207f23e22f16b5129a5fe.jpg: 640x640 3 Potholes, 9.2ms
image 583/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.7566ef76e82dccc357ff1691393cdff8.jpg: 640x640 2 Potholes, 9.6ms
image 584/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.a2d3901d28aa5d5a7040913eaffb5011.jpg: 640x640 2 Potholes, 9.8ms
image 585/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.ea29a2566cbd0e48094adae5b4cf7087.jpg: 640x640 2 Potholes, 9.8ms
image 586/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.5fbe76ea8a76e35b41970ccb6f5e4730.jpg: 640x640 6 Potholes, 9.8ms
image 587/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.ead443dd9f37ce2e29069e9049d804e7.jpg: 640x640 5 Potholes, 11.3ms
image 588/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.f3d79095cd22dd76dc99c447f82e50d0.jpg: 640x640 5 Potholes, 14.7ms
image 589/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.38b94f88de5e174741f7f535773d0c40.jpg: 640x640 5 Potholes, 10.4ms
image 590/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.bc4a2c2beca4c0a398dbc10fc7efc934.jpg: 640x640 4 Potholes, 9.7ms
image 591/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.f708e8dd61e5d6c7f0417a6e7befa47d.jpg: 640x640 4 Potholes, 9.9ms
image 592/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.d8822e3b6a7c8fe4c73543cd7d7ae9cd.jpg: 640x640 1 Pothole, 13.2ms
image 593/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.def4f32d6ba09bcb7a22b8a34a7c8115.jpg: 640x640 1 Pothole, 16.3ms
image 594/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.f05e2cd157034e39c0eb9db8e7f09bb5.jpg: 640x640 1 Pothole, 14.8ms
image 595/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.1ee5c3ca066d62d6b4aed03d3575b5ea.jpg: 640x640 1 Pothole, 10.3ms
image 596/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.540025fd1af3f0c105d5a5f489e307da.jpg: 640x640 1 Pothole, 9.9ms
image 597/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.7815bad4623e4bb70645806ea5a77a47.jpg: 640x640 1 Pothole, 10.3ms
image 598/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.7cc54c3290a15bece4443e1f76a5800c.jpg: 640x640 1 Pothole, 10.0ms
image 599/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.a5904fe5b078b76264e6bf4b9a026627.jpg: 640x640 2 Potholes, 9.9ms
image 600/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.f0c232122401c2974af21cab0c286439.jpg: 640x640 1 Pothole, 10.0ms
image 601/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.87cabcde97c75c9068793716694ef1c5.jpg: 640x640 2 Potholes, 10.5ms
image 602/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.ab51f5f29c2cabd3037a7f562d7c3a48.jpg: 640x640 1 Pothole, 9.9ms
image 603/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.d55ddba83fd6401d17e234092ab2a378.jpg: 640x640 2 Potholes, 11.3ms
image 604/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.18ade0de978aa6c6068402dd80642ccf.jpg: 640x640 2 Potholes, 9.9ms
image 605/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.41ab69bbd0dab6a5f9693448b7cf2cd1.jpg: 640x640 1 Pothole, 14.0ms
image 606/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.8c8d4aebd0f2fb128a231b7b798bd669.jpg: 640x640 1 Pothole, 14.8ms
image 607/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.7d1b62f97cac4df979e6f394117d04d1.jpg: 640x640 10 Potholes, 12.6ms
image 608/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.935c3e2cd37b84d8f63043ca26ebb402.jpg: 640x640 10 Potholes, 10.0ms
image 609/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.98eff15743815f755fd3722f3836c850.jpg: 640x640 10 Potholes, 16.7ms
image 610/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.6f4e81b1ca5d29168033fa69c92c6e24.jpg: 640x640 1 Pothole, 10.8ms
image 611/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.d3fc5f4680f6e28784c2f686b25736bd.jpg: 640x640 1 Pothole, 10.4ms
image 612/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.e6834834f2f355ae4e8d55f881695099.jpg: 640x640 1 Pothole, 10.2ms
image 613/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.20fe5b2f0851cc97b06f4a9d68881330.jpg: 640x640 1 Pothole, 10.0ms
image 614/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.cbd6e701a750684661efc0363bd607aa.jpg: 640x640 1 Pothole, 10.0ms
image 615/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.dcd3fa3c9b81035067fbcb5e4998db50.jpg: 640x640 1 Pothole, 12.9ms
image 616/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.7863aa2444a65c631e8af7c5b9ac8edb.jpg: 640x640 1 Pothole, 10.0ms
image 617/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.d2884b15285690c8542d7391ee04de10.jpg: 640x640 1 Pothole, 11.0ms
image 618/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.d50db2cc8bb871fd0925592de1923193.jpg: 640x640 1 Pothole, 14.3ms
image 619/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.75d85a055ab217101c1e32000dd5826b.jpg: 640x640 3 Potholes, 13.4ms
image 620/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.81a9ac78e24a93573acdd933a0dd3b2a.jpg: 640x640 3 Potholes, 13.5ms
image 621/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.f4fd8956206d712c6b9964dfbfe1567e.jpg: 640x640 3 Potholes, 10.1ms
image 622/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.2c59f391b25c97761914413f17802e9d.jpg: 640x640 6 Potholes, 10.2ms
image 623/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.5a0e8d02278b5430fa7bd514f437f041.jpg: 640x640 6 Potholes, 10.7ms
image 624/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.9d88ef6a6cc16ef8eec9b1688a9d598e.jpg: 640x640 7 Potholes, 10.1ms
image 625/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.7fa7e133ba0c2210d5075b0795e6815d.jpg: 640x640 1 Pothole, 10.4ms
image 626/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.be4b7862a50c7fd0105a6a47ea0f48b9.jpg: 640x640 (no detections), 11.3ms
image 627/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.e602ed35d690902722b26561dd3f9684.jpg: 640x640 (no detections), 10.4ms
image 628/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.2025b0c631dbf0d3277e7d8f95bbf6e8.jpg: 640x640 5 Potholes, 14.0ms
image 629/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.2d3138a80a414a75ab0117408153227b.jpg: 640x640 6 Potholes, 12.8ms
image 630/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.ad992ba43ecdd6892307c96e01da1afa.jpg: 640x640 5 Potholes, 11.8ms
image 631/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.20cbf511ac305a699cd432846cbb264f.jpg: 640x640 1 Pothole, 10.9ms
image 632/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.23e729ce0e5380e419377888f247b0ec.jpg: 640x640 1 Pothole, 10.7ms
image 633/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.6d010af44edfa998adc338038f167ac6.jpg: 640x640 1 Pothole, 10.8ms
image 634/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.65c5742cced68822528a322492f2652d.jpg: 640x640 2 Potholes, 15.1ms
image 635/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.7400b47430ca61631409d5ec433fbf79.jpg: 640x640 2 Potholes, 17.2ms
image 636/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.75ec4611f8576a0f7706a3767986d5fa.jpg: 640x640 2 Potholes, 11.8ms
image 637/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.3fa842cfa55b39d094c6e4be45aaf994.jpg: 640x640 5 Potholes, 613.2ms
image 638/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.4bee9afd2a93c4eec1a251f641521c4c.jpg: 640x640 5 Potholes, 1452.9ms
image 639/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.be12246c53c37bcff9d671a1052b23bb.jpg: 640x640 6 Potholes, 1456.7ms
image 640/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.0f9bcdab2065fee694fefca6af561329.jpg: 640x640 (no detections), 655.5ms
image 641/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.c09149434e1578a21379b1ec049c97e2.jpg: 640x640 1 Pothole, 14135.4ms
image 642/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.dd6b8e67c19a5c53bb6f91b55e593a13.jpg: 640x640 1 Pothole, 25302.2ms
image 643/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.00116918149ac51697ae5249644ef144.jpg: 640x640 1 Pothole, 31109.4ms
image 644/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.08280c0eeb6772c510479ba1a84a6778.jpg: 640x640 1 Pothole, 38434.6ms
image 645/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.30b9fb02402e11d9d73579c9c007e6f1.jpg: 640x640 1 Pothole, 4497.8ms
image 646/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.16da87d5105f997141b5538f74203204.jpg: 640x640 1 Pothole, 580.1ms
image 647/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.4599969de001cd1935d28ed812d1dd90.jpg: 640x640 1 Pothole, 47278.7ms
image 648/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.753bab7893e8644b71fea76010278698.jpg: 640x640 1 Pothole, 2390.8ms
image 649/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.01e2ff81bb8754692afe9b2bb2fda48a.jpg: 640x640 1 Pothole, 12621.3ms
image 650/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.a4fb54bd2e21373bc7b34ffadb02d9eb.jpg: 640x640 2 Potholes, 50919.4ms
image 651/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.f73e19df2feadf86dbc38f4eb690d204.jpg: 640x640 1 Pothole, 186.5ms
image 652/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.3908b60fc10504b5de5ceb2ba0cddcb1.jpg: 640x640 1 Pothole, 154.4ms
image 653/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.4062413067c04acc387e651210b12921.jpg: 640x640 1 Pothole, 154.9ms
image 654/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.72e4e540e160870c4756c500e80e40b1.jpg: 640x640 1 Pothole, 86.7ms
image 655/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.5d2577e0f9e471d4b9dcfce00a96d034.jpg: 640x640 1 Pothole, 76.2ms
image 656/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.61a63f92522c3558c8dc33ecae183ed2.jpg: 640x640 1 Pothole, 41.2ms
image 657/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.83c80a807ca47eb0192cb129ebc8cb41.jpg: 640x640 1 Pothole, 41.8ms
image 658/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.51b8d15858f724437e1ce83b1f7a76a0.jpg: 640x640 1 Pothole, 33.0ms
image 659/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.6e55ada23b1148608d6daddc7d6d7e27.jpg: 640x640 1 Pothole, 31.0ms
image 660/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.a51a0e1d7624e72d7257934cefd3d410.jpg: 640x640 1 Pothole, 34.4ms
image 661/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.b8083f42dac8ce2a5d303479dc967792.jpg: 640x640 1 Pothole, 26.9ms
image 662/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.be47d8798d6f806389366b2c6e3a3dd1.jpg: 640x640 1 Pothole, 16.7ms
image 663/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.fa63c47cf0aa776aec75efb4df84f724.jpg: 640x640 1 Pothole, 10.2ms
image 664/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.22de640e2560bddb13ff49abfccbc8d6.jpg: 640x640 1 Pothole, 10.0ms
image 665/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.b4762871ab415292cd35f6ee6e2059a5.jpg: 640x640 1 Pothole, 9.8ms
image 666/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.f2cd6b29cbaf9efb1f836b4c78aca3f9.jpg: 640x640 1 Pothole, 10.8ms
image 667/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.8988aa50fb872401bc29ab7830281e22.jpg: 640x640 4 Potholes, 9.9ms
image 668/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.d08231a7b3ed0079786a5cc588acb6a8.jpg: 640x640 4 Potholes, 9.8ms
image 669/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.e5fc6c140371201fb051fc7100769b0b.jpg: 640x640 4 Potholes, 9.0ms
image 670/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.2c871f142112a2de4e78f5730d77bf73.jpg: 640x640 1 Pothole, 40.8ms
image 671/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.682981671ea574a72479e1763164f07b.jpg: 640x640 1 Pothole, 28568.4ms
image 672/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.f826102d59ca692fc6a7cd93131a448e.jpg: 640x640 1 Pothole, 8894.9ms
image 673/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.24e5bbbd60206e18fc16880bfeaad9aa.jpg: 640x640 5 Potholes, 125776.0ms
image 674/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.96fb5070300f4d0838ba9d84df193cb3.jpg: 640x640 6 Potholes, 16455.4ms
image 675/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.cdb1fbbb88686147ca6fd7393e9a1053.jpg: 640x640 5 Potholes, 43991.2ms
image 676/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.6067035f09c5b1b4a82debfac50b8b68.jpg: 640x640 2 Potholes, 44976.7ms
image 677/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.658f94a0e7d008ff38e85a627d6f699e.jpg: 640x640 1 Pothole, 19140.1ms
image 678/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.8d1e38d4c07d51717c500ae1145d7108.jpg: 640x640 1 Pothole, 13574.6ms
image 679/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.79ea02211ed732335af4650b0977b9ad.jpg: 640x640 2 Potholes, 21175.1ms
image 680/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.875df442d5750a19dce18e532e06b8fe.jpg: 640x640 2 Potholes, 48868.0ms
image 681/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.f2555c00b7ca574dd2f6b119f2849651.jpg: 640x640 2 Potholes, 61484.7ms
image 682/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.02b3ed7783bfa794dcb56d483821c20c.jpg: 640x640 5 Potholes, 389439.1ms
image 683/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.a64446b223ce0bba88626d3b9688cb5f.jpg: 640x640 6 Potholes, 204710.7ms
In [9]:
#same with cpu 
model_pre_trained("dataset/train/images",device='cpu')
image 1/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.49882cdb272111f43a6656b1494a4918.jpg: 640x640 3 Potholes, 66.1ms
image 2/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.8d95dd1d29760a2634a45cc7fdd84b31.jpg: 640x640 3 Potholes, 115.3ms
image 3/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.e238c9bf3fe82e8ac55b0014a27fc529.jpg: 640x640 3 Potholes, 76.7ms
image 4/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.1d433d21e11d000b6b498eacb88fe4a9.jpg: 640x640 27 Potholes, 11.3ms
image 5/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.500c683a687e403f4cdade4826a84b5b.jpg: 640x640 25 Potholes, 6.4ms
image 6/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.5a901c212d899a7dc7dc78be7de892c0.jpg: 640x640 26 Potholes, 9.7ms
image 7/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.17047bb032a49c96643c5f2108bb99dd.jpg: 640x640 2 Potholes, 6.7ms
image 8/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.8c9076ee84698f90f04765f4e794a819.jpg: 640x640 2 Potholes, 7.8ms
image 9/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.ebc3af260e989e6f9e1e9221b9dff6b0.jpg: 640x640 2 Potholes, 6.7ms
image 10/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.1e32a49f89a38974ded11bba8dd3e56b.jpg: 640x640 2 Potholes, 6.5ms
image 11/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.4abe48a3d2a5e556908bf4286446e5ce.jpg: 640x640 2 Potholes, 6.8ms
image 12/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.8380b58f6540ec91db66934b342f7f9e.jpg: 640x640 2 Potholes, 7.3ms
image 13/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.bb6db5bdb59d1a6af15b0a0b565a3cdb.jpg: 640x640 1 Pothole, 6.9ms
image 14/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.cd0b0b3a64e3a11005884c98c1f6c3aa.jpg: 640x640 1 Pothole, 8.5ms
image 15/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.df35bf045672f19a05f84a8c365dab3a.jpg: 640x640 1 Pothole, 7.0ms
image 16/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.26017e20e92320bcde575710389353b1.jpg: 640x640 1 Pothole, 7.3ms
image 17/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.4fa35472ae606aca56d49966dc91b5b6.jpg: 640x640 1 Pothole, 7.5ms
image 18/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.e204fd0f4f80094ec52c54c31ab06db0.jpg: 640x640 1 Pothole, 7.7ms
image 19/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.117ec7cfcc77d6e6f80130934b1d5aa1.jpg: 640x640 7 Potholes, 9.4ms
image 20/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.e4efc52e048da0b6918c135b1bd39962.jpg: 640x640 6 Potholes, 7.2ms
image 21/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.f986cb78d75fc164de95ac33c56d9474.jpg: 640x640 6 Potholes, 7.8ms
image 22/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.0b52d3fe11f0b249a5eb2f14a8f0a14f.jpg: 640x640 1 Pothole, 8.8ms
image 23/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.0ce0939aec2bb2ab235addf64d130914.jpg: 640x640 1 Pothole, 8.2ms
image 24/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.859bee21c8abeda9bc4ef41da6d2d0bf.jpg: 640x640 1 Pothole, 9.2ms
image 25/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.0cbfb7193cdb49723d65f538678e22d2.jpg: 640x640 1 Pothole, 8.9ms
image 26/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.ac62ec1fab28b4344978edf35e9d2f3b.jpg: 640x640 1 Pothole, 8.8ms
image 27/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.e4becd5b84615a7550986c2835dc285e.jpg: 640x640 1 Pothole, 6.8ms
image 28/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.03fc77860b4af0df70c5ab46db783441.jpg: 640x640 1 Pothole, 7.5ms
image 29/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.3553f8919ce95633136ebe837864a734.jpg: 640x640 1 Pothole, 6.8ms
image 30/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.f0ad7fbe0407cb85527525e503913079.jpg: 640x640 1 Pothole, 7.1ms
image 31/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.0a11aa9e03c7bce050328b7bb2341bad.jpg: 640x640 6 Potholes, 7.3ms
image 32/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.1dee3ebe35fda326931fb1a1a3162f56.jpg: 640x640 5 Potholes, 7.0ms
image 33/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.539074c8d5134b846ed4b34e66362766.jpg: 640x640 6 Potholes, 7.6ms
image 34/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.04274b3be06ee972e8900a1875f45611.jpg: 640x640 1 Pothole, 6.8ms
image 35/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.b84c3f664bd7ae818c9af8fb6bc95a9c.jpg: 640x640 1 Pothole, 7.2ms
image 36/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.de4b44ded5874999731e65adcf907536.jpg: 640x640 1 Pothole, 6.6ms
image 37/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.39503b2272330e0dd57ffe9fc6ed720e.jpg: 640x640 1 Pothole, 12.2ms
image 38/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.489d3c93901c3240d87b78333702d26c.jpg: 640x640 2 Potholes, 7.0ms
image 39/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.7bf3ce1997b0a5d878ad6fabe1e5772a.jpg: 640x640 1 Pothole, 7.1ms
image 40/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.c61b825409e38c7651bca32e1d9680b5.jpg: 640x640 1 Pothole, 7.5ms
image 41/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.c9150ba543315705a5bb08654144ccf9.jpg: 640x640 1 Pothole, 7.0ms
image 42/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.ddb9b30f00ca7dfad4235fcd67610a9b.jpg: 640x640 1 Pothole, 6.9ms
image 43/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.39065e4e7f12e6c9d4e829f9df001cec.jpg: 640x640 5 Potholes, 8.6ms
image 44/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.3a38a17ad93dbe166ddcc54aae67d206.jpg: 640x640 6 Potholes, 6.9ms
image 45/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.748bde6c84a85700fe3e4a8ad8e5c83c.jpg: 640x640 6 Potholes, 9.4ms
image 46/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.3d443fe242b14e97a21264faecffde8c.jpg: 640x640 2 Potholes, 12.2ms
image 47/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.565a4282cf6d23cbb37f3ee73567ec2b.jpg: 640x640 3 Potholes, 8.5ms
image 48/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.a0296021fd4252e341077743b0990cb8.jpg: 640x640 3 Potholes, 6.6ms
image 49/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.59ab5bd4ba9f0202cd15f82e7109fc77.jpg: 640x640 1 Pothole, 6.9ms
image 50/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.b8d031ce65af24e0b5e80cab8723335b.jpg: 640x640 1 Pothole, 8.7ms
image 51/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.dfebb14b79daa214f3f87995192a85ae.jpg: 640x640 1 Pothole, 8.2ms
image 52/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.1da712be935af009c0a9e04f0276f225.jpg: 640x640 1 Pothole, 7.1ms
image 53/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.2ac2c551c23ad08dd5599f320c8dd310.jpg: 640x640 1 Pothole, 7.4ms
image 54/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.a808c9e7b2121bd93dbc59332a6d12cb.jpg: 640x640 2 Potholes, 7.2ms
image 55/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.23537a5a480ec24a62b83163a80c4db3.jpg: 640x640 1 Pothole, 7.3ms
image 56/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.8e6e071e8f8e9e9d6f84a1f35766ebf0.jpg: 640x640 1 Pothole, 9.0ms
image 57/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.a5e887bf3c2428e83a81dc48e4f80b0e.jpg: 640x640 1 Pothole, 7.7ms
image 58/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.8beeeda1ce5f8d0cf75e8634f45e6e7e.jpg: 640x640 3 Potholes, 7.6ms
image 59/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.aa2953e739d235b2eddafdea4a1dab6e.jpg: 640x640 4 Potholes, 6.9ms
image 60/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.cf3c2b75ffec6c9e27d18a6b98b67bf9.jpg: 640x640 4 Potholes, 6.6ms
image 61/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.4871608ed18b586f1e4e5f2e440b1320.jpg: 640x640 1 Pothole, 8.4ms
image 62/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.8c7abcd78dd1d16256589acaf80a4182.jpg: 640x640 1 Pothole, 6.7ms
image 63/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.efb59ea51e49ee98c39fcda52e3b6389.jpg: 640x640 1 Pothole, 16.1ms
image 64/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.3145a5860685e71bb38756743d8c5132.jpg: 640x640 6 Potholes, 12.9ms
image 65/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.40ca7474661c6928638675cb6b4f648f.jpg: 640x640 5 Potholes, 6.6ms
image 66/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.f538915b42230d73cd5e22bcb4b06ce6.jpg: 640x640 5 Potholes, 7.3ms
image 67/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.292a7daa7fa877194720b879161d8c40.jpg: 640x640 1 Pothole, 8.1ms
image 68/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.6550c19d889288f83dca4f4c57545348.jpg: 640x640 1 Pothole, 7.2ms
image 69/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.ca379af880817bcbc914bac8fd00d7e6.jpg: 640x640 1 Pothole, 6.8ms
image 70/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.727dc87f7e5fb44ce14cf3878f669aa7.jpg: 640x640 7 Potholes, 7.6ms
image 71/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.a7402de11b1c3f7af0cc32933211e3f6.jpg: 640x640 8 Potholes, 7.0ms
image 72/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.c136dab4f56b39061798109d2420b61f.jpg: 640x640 9 Potholes, 6.6ms
image 73/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.5e69150b156446dbd25a1ba55e83d665.jpg: 640x640 1 Pothole, 7.2ms
image 74/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.5f9ee27d0fe8571af0685b1746b9d7fc.jpg: 640x640 1 Pothole, 8.3ms
image 75/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.e75e7815306ccb81e78d7f8b63857483.jpg: 640x640 (no detections), 7.9ms
image 76/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.260cc574c3efc137da742a912741a3fb.jpg: 640x640 3 Potholes, 7.6ms
image 77/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.4d5c28bfd2ec83debd1fa97e86bbddb4.jpg: 640x640 3 Potholes, 7.3ms
image 78/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.c72b1826e8aaa63d8f1713c2957e93e5.jpg: 640x640 3 Potholes, 7.1ms
image 79/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.4aebae9cb49eac155acea198eb8d4649.jpg: 640x640 1 Pothole, 7.9ms
image 80/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.513297c58b670dfbcee0c02f22a76c9f.jpg: 640x640 1 Pothole, 8.0ms
image 81/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.762e69fb9b1c80f586c501b5b9c515db.jpg: 640x640 1 Pothole, 7.9ms
image 82/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.0ac3472d1668a73f904ec562bcfc43ff.jpg: 640x640 1 Pothole, 6.9ms
image 83/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.145c4607840c2bcac86b2f76c28a7750.jpg: 640x640 1 Pothole, 9.8ms
image 84/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.e9d874018c8eb5296749630aca5603e6.jpg: 640x640 1 Pothole, 7.0ms
image 85/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.6ada3c0e80b409618278df949cd6b7e5.jpg: 640x640 1 Pothole, 14.1ms
image 86/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.b5e4ccd6fb004ba11f36c902116a6dfa.jpg: 640x640 1 Pothole, 7.5ms
image 87/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.f7751cf8a51dd62c4e458caa96bc1906.jpg: 640x640 1 Pothole, 15.7ms
image 88/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.0f6726c68af9fe60c2249e2349f8c049.jpg: 640x640 1 Pothole, 7.1ms
image 89/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.2326fd752be4eb885ad113b533f9ac5c.jpg: 640x640 1 Pothole, 10.0ms
image 90/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.573aa03e77804ed419f1fd0a190ba13a.jpg: 640x640 1 Pothole, 7.1ms
image 91/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.30c2f70058a6fad525c31f57d3952d4d.jpg: 640x640 1 Pothole, 7.3ms
image 92/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.7a54a7e1ad2243629779c48a41b94ca1.jpg: 640x640 1 Pothole, 8.1ms
image 93/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.9506d58945bc1f6e0cd0b6810ca40ad5.jpg: 640x640 1 Pothole, 10.0ms
image 94/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.17911c1b0d9ce482c109ce1e784940b4.jpg: 640x640 1 Pothole, 8.4ms
image 95/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.797a01efcb3ccc31edc05fbd79854344.jpg: 640x640 1 Pothole, 7.5ms
image 96/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.955ee641285edaa97d368881f70563fd.jpg: 640x640 1 Pothole, 8.3ms
image 97/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.24a41f4b91e68f7e35f7d2feff83054d.jpg: 640x640 1 Pothole, 8.0ms
image 98/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.7aa442a433a0074d31ec5ba2de39c2a4.jpg: 640x640 1 Pothole, 7.6ms
image 99/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.8dc9e79be10c01f6f279b4c27266ab65.jpg: 640x640 1 Pothole, 8.5ms
image 100/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.517c7c3c07571b10697a58b567940b58.jpg: 640x640 1 Pothole, 8.3ms
image 101/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.a84bccc6824f607509bb701d8ccd3c87.jpg: 640x640 1 Pothole, 7.3ms
image 102/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.e15dd6f2f2bc285d64fef68fb2d92164.jpg: 640x640 1 Pothole, 7.4ms
image 103/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.1ee928d9f772b66ef1a56bc9ddc702b2.jpg: 640x640 12 Potholes, 7.8ms
image 104/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.9cee00f51ec30b4e0f591b2da2007a10.jpg: 640x640 15 Potholes, 7.7ms
image 105/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.d3d07ce395c3562793390b1003e99d1f.jpg: 640x640 17 Potholes, 7.4ms
image 106/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.28112df3106c2b4485053cd6371a47ef.jpg: 640x640 3 Potholes, 7.3ms
image 107/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.af169e1464071ae718f22b5baebe13a6.jpg: 640x640 3 Potholes, 7.3ms
image 108/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.d694cf94912347ceff66727b95ecb05a.jpg: 640x640 3 Potholes, 7.5ms
image 109/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.374184952caf59cfa399166b0111b640.jpg: 640x640 1 Pothole, 8.1ms
image 110/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.5b5d603ae481652805ea93e3698ea609.jpg: 640x640 1 Pothole, 7.5ms
image 111/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.eec8497f7279810ff44902d6eca0121b.jpg: 640x640 1 Pothole, 7.6ms
image 112/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.07fa25bc5fbd7c2711b9ce8ac28ad6a2.jpg: 640x640 1 Pothole, 8.3ms
image 113/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.766c3d35632f4641ce9d5207a3cadd70.jpg: 640x640 1 Pothole, 7.8ms
image 114/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.8b1343ad71a58c8daf99e2311627f0c8.jpg: 640x640 1 Pothole, 8.4ms
image 115/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.68c4e347a47e89fb46aedd298c2c3e5c.jpg: 640x640 4 Potholes, 10.5ms
image 116/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.738912a20f4c9753a555bf9e7a468851.jpg: 640x640 3 Potholes, 7.8ms
image 117/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.87bfef6ce65eb5df5b6053523e6b4954.jpg: 640x640 3 Potholes, 10.4ms
image 118/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.0cf42e6b552e8f867e76237f36e7eadc.jpg: 640x640 7 Potholes, 8.2ms
image 119/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.3e2f11367531d04d10e9132cf6fe9b8f.jpg: 640x640 7 Potholes, 7.5ms
image 120/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.5795a6265ed32db2ca7965aa7e0174b1.jpg: 640x640 6 Potholes, 7.7ms
image 121/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.94b5851bcded6830d88bef9ed5001cc4.jpg: 640x640 1 Pothole, 8.2ms
image 122/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.dc5bb23e947044e6c4a4572abc3e8213.jpg: 640x640 1 Pothole, 8.0ms
image 123/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.fc3d1df38a5c4e68febeb45b2a132f4a.jpg: 640x640 1 Pothole, 7.7ms
image 124/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.0879365f4e7e435dba77c82134cc5623.jpg: 640x640 2 Potholes, 7.6ms
image 125/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.8658b3f74ded0b4631ae8fb8215d1f97.jpg: 640x640 3 Potholes, 7.6ms
image 126/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.d06e1261d14a5a908632f7f9984b1533.jpg: 640x640 3 Potholes, 7.6ms
image 127/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.216b82e37fe7bf7ace28e129f406915c.jpg: 640x640 2 Potholes, 8.2ms
image 128/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.eab223bbca50b3ff5899899213a6292d.jpg: 640x640 2 Potholes, 7.5ms
image 129/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.f94e3b194754043332e4361c80e7d3db.jpg: 640x640 2 Potholes, 7.6ms
image 130/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.01b4f283d7eaa74981edcc0259ef43cb.jpg: 640x640 3 Potholes, 7.8ms
image 131/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.8c8e224f08327d871ec0791f80a0d43a.jpg: 640x640 4 Potholes, 7.8ms
image 132/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.ea068320394add8a6ff90b4396b79923.jpg: 640x640 4 Potholes, 8.8ms
image 133/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.05122d9316fa0be439f878d8aa337d3d.jpg: 640x640 2 Potholes, 8.4ms
image 134/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.18a3fc9b3f915028b7246fba6b56fd11.jpg: 640x640 2 Potholes, 10.5ms
image 135/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.6d367895786517cfe865fb065be076a5.jpg: 640x640 2 Potholes, 7.8ms
image 136/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.0f296124b79e86f38cda27b6fe05d742.jpg: 640x640 4 Potholes, 9.0ms
image 137/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.890438ae2f4d1bb94198abdd6c181ec8.jpg: 640x640 3 Potholes, 8.3ms
image 138/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.a31a26433609129cbb67d23fcb851296.jpg: 640x640 4 Potholes, 7.9ms
image 139/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.5a781d389cff26a6e2ee08ce9b0498e7.jpg: 640x640 1 Pothole, 8.0ms
image 140/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.8e92fc1a329453e782f06e741d1fc52f.jpg: 640x640 1 Pothole, 7.7ms
image 141/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.e2bb2aecbf0577a45e672425acfed876.jpg: 640x640 1 Pothole, 8.4ms
image 142/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.a45f79f8033191bd09e9ef31736ca58e.jpg: 640x640 1 Pothole, 8.4ms
image 143/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.c349f70d3d136c391a0458b64dd56ebe.jpg: 640x640 2 Potholes, 8.0ms
image 144/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.e58bb252f96f5f83d1d3290b4e6b8041.jpg: 640x640 1 Pothole, 8.1ms
image 145/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.390f967469ceb20da60cbb99af7e2c16.jpg: 640x640 5 Potholes, 7.6ms
image 146/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.5331a19ad3f6b2b37894ae4f0072cea0.jpg: 640x640 5 Potholes, 10.2ms
image 147/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.988cf6bc7c8911ed0169be801328edb7.jpg: 640x640 6 Potholes, 7.7ms
image 148/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.0f181e46348e6b83b3a218d5ea72eef2.jpg: 640x640 5 Potholes, 7.9ms
image 149/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.80838b8e9f59a59d85e9727727b31fd7.jpg: 640x640 4 Potholes, 7.7ms
image 150/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.e47d187e86dd6eb504660921449a7883.jpg: 640x640 5 Potholes, 7.8ms
image 151/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.61b165d52cdeea1e1a674f2e8e3912d5.jpg: 640x640 3 Potholes, 10.0ms
image 152/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.c2e6d6e3806754b1713a36a954367a60.jpg: 640x640 3 Potholes, 7.7ms
image 153/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.f7752000f79cfa2acc35f9a7149ee56d.jpg: 640x640 3 Potholes, 10.5ms
image 154/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.424bbc028685f5de7e9cc866eb988b1e.jpg: 640x640 2 Potholes, 8.8ms
image 155/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.a0f2c54c02aec34c0ca6138b4635c155.jpg: 640x640 2 Potholes, 8.7ms
image 156/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.ba6a2e4e1abc6f5aa893e46932e4df4f.jpg: 640x640 2 Potholes, 8.4ms
image 157/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.3b94cd14bdbf92f4cd57497def72b167.jpg: 640x640 3 Potholes, 7.7ms
image 158/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.9e41f44435259c8fa4baadcdbc5f0f7f.jpg: 640x640 2 Potholes, 9.6ms
image 159/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.a3c099766b4b6cb736f460bf8f3b8377.jpg: 640x640 2 Potholes, 7.9ms
image 160/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.21962dcea10b8f2209ae3fdb9797b6c6.jpg: 640x640 2 Potholes, 8.6ms
image 161/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.7c67c2036a30fd93eed5361cc2f4f1c8.jpg: 640x640 2 Potholes, 9.2ms
image 162/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.bb32e2985b2c29e77029a0452ab20bac.jpg: 640x640 2 Potholes, 7.9ms
image 163/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.12b33adab537f585de7b3d85b848618e.jpg: 640x640 1 Pothole, 7.9ms
image 164/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.1ed8251ec141db216fc5041d7838f5e1.jpg: 640x640 1 Pothole, 9.8ms
image 165/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.2dcc275359fb301602e6957a56e13dc7.jpg: 640x640 1 Pothole, 8.7ms
image 166/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.0d031ce3c207297977b4c60a77d278da.jpg: 640x640 1 Pothole, 8.3ms
image 167/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.47407d69db6694be4d9fa4b3c032d235.jpg: 640x640 1 Pothole, 8.1ms
image 168/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.946ec84ddfa3a53b7b2d407349f08e62.jpg: 640x640 1 Pothole, 8.0ms
image 169/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.046afe1498d1564227421d54b7abdcaa.jpg: 640x640 2 Potholes, 8.2ms
image 170/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.8ac19617548efc70a9281d8dc3794dfd.jpg: 640x640 2 Potholes, 8.3ms
image 171/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.acf7ae50b1e59b9e6e4bbf150e8055a9.jpg: 640x640 2 Potholes, 14.0ms
image 172/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.69c191909f6cc1a946105b08efab6224.jpg: 640x640 2 Potholes, 8.3ms
image 173/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.7352a1a695f0ce198ca67b3f1c186fd6.jpg: 640x640 2 Potholes, 8.7ms
image 174/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.f847c9d3c6c04f210e5e2f3e8eb444d4.jpg: 640x640 2 Potholes, 14.5ms
image 175/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.2677c0fd3f9bec65c04ee82b7d8a000a.jpg: 640x640 1 Pothole, 8.1ms
image 176/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.75e0f6d481468e27710dc5bec3a78ea2.jpg: 640x640 1 Pothole, 8.4ms
image 177/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.d56b832482912f0e78e017e95747fdea.jpg: 640x640 1 Pothole, 8.6ms
image 178/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.31facecf28467c64106a888177c293c4.jpg: 640x640 1 Pothole, 8.5ms
image 179/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.34bf0aa5f308144c68fb1b5f9a1b9423.jpg: 640x640 1 Pothole, 8.1ms
image 180/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.9248a616cb0e3d24aa2bb44288e019ce.jpg: 640x640 1 Pothole, 8.2ms
image 181/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.2f4d36fff66d603c99b22043abc562ba.jpg: 640x640 2 Potholes, 8.0ms
image 182/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.33cf824f2784fd32a3bb22c67f3fdabc.jpg: 640x640 2 Potholes, 8.4ms
image 183/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.77f1227905045ad65f8fda0d6427dbe5.jpg: 640x640 2 Potholes, 8.2ms
image 184/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.307e87780d9f502b50e422c4a80d38c9.jpg: 640x640 2 Potholes, 12.8ms
image 185/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.5d211f0e20e55adab672af34f9df1940.jpg: 640x640 3 Potholes, 8.2ms
image 186/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.f15ca9251a252759a4206b00e88066ea.jpg: 640x640 2 Potholes, 8.5ms
image 187/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.470ca7ba7c3aed3a3ff0ca36725fadb6.jpg: 640x640 1 Pothole, 10.4ms
image 188/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.ad622f815165a84798a7922e02a02876.jpg: 640x640 1 Pothole, 8.2ms
image 189/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.d6e69d2d4e07bc489d1f95b357e47d26.jpg: 640x640 1 Pothole, 8.0ms
image 190/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.ab0a07cd761c2739c0051926b50b0593.jpg: 640x640 3 Potholes, 8.5ms
image 191/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.ce08674b1ae95506239ffe1d5e92d8a1.jpg: 640x640 3 Potholes, 8.3ms
image 192/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.f326f486b62b79f5bc791704fabd90e8.jpg: 640x640 4 Potholes, 8.1ms
image 193/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.3571a1273709f941c4936d6ee8b32214.jpg: 640x640 5 Potholes, 8.5ms
image 194/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.a8d1a4654900167fc8106a1f6144ceff.jpg: 640x640 5 Potholes, 8.5ms
image 195/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.f6e9c0883eac1443308f4f424ae60db4.jpg: 640x640 4 Potholes, 8.3ms
image 196/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.2de27493e9ea7ae685e6a868e05dff51.jpg: 640x640 1 Pothole, 8.4ms
image 197/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.a81f6e206e422229e3021b0dfb06752f.jpg: 640x640 2 Potholes, 8.5ms
image 198/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.f536cb9ac4138da71c6af4d8a3492050.jpg: 640x640 1 Pothole, 8.4ms
image 199/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.171729c8713c604e4d2371b546dfa09f.jpg: 640x640 3 Potholes, 8.1ms
image 200/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.96d2ff93572de0ce5bd564113ece7ad0.jpg: 640x640 3 Potholes, 8.5ms
image 201/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.b732ca94d029e82283eed3228fae8625.jpg: 640x640 3 Potholes, 8.6ms
image 202/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.2f427bf4f80837fb0387c3ee0c38e172.jpg: 640x640 2 Potholes, 8.8ms
image 203/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.5ec8f9ecd96971def7f6e5074c5e0373.jpg: 640x640 3 Potholes, 8.4ms
image 204/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.7ffbfba8e5d63b5f4577f701ca5f7105.jpg: 640x640 3 Potholes, 8.8ms
image 205/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.24dea194a3e0e25703a25e481c89dc9c.jpg: 640x640 4 Potholes, 9.6ms
image 206/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.8d87b09b011bb4b479cea2d472354334.jpg: 640x640 4 Potholes, 8.5ms
image 207/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.be38366f2703b44711a2e9486cc677d3.jpg: 640x640 4 Potholes, 9.0ms
image 208/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.4b35b04139ea1742026f65aa3e2730fe.jpg: 640x640 3 Potholes, 8.7ms
image 209/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.86d64524dfd317ff89ce31ff39a3fa83.jpg: 640x640 3 Potholes, 9.2ms
image 210/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.c2ece8aa91efbc0843296da9f0892b5b.jpg: 640x640 3 Potholes, 9.1ms
image 211/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.c4a7f4f1cff2653d7d2fbc85d91bddca.jpg: 640x640 1 Pothole, 8.7ms
image 212/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.ca0b41b2475176a03280e24fc5d3da7b.jpg: 640x640 1 Pothole, 9.2ms
image 213/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.ff0320a37ee1d098eb9aed6036758287.jpg: 640x640 1 Pothole, 9.3ms
image 214/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.146c5b1af3190071c88676c409c4dad1.jpg: 640x640 2 Potholes, 8.7ms
image 215/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.42022b7bc105da3fc5d269c32db8dbcf.jpg: 640x640 2 Potholes, 8.6ms
image 216/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.f4e625f77be483b3db88308e516192a1.jpg: 640x640 2 Potholes, 8.5ms
image 217/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.16f8930512bc55a715ff702283ede87f.jpg: 640x640 9 Potholes, 13.8ms
image 218/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.544e62b6d885e8e5cc375189b6c13233.jpg: 640x640 9 Potholes, 8.8ms
image 219/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.edbdd29c7a063d66218221470a7e44f5.jpg: 640x640 8 Potholes, 13.9ms
image 220/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.4c915083eb98e45fee4d4f707f89406a.jpg: 640x640 1 Pothole, 9.9ms
image 221/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.d2e46218aa9286f174c99c772f1c1758.jpg: 640x640 1 Pothole, 9.1ms
image 222/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.e0d1623b0c6c69da4a967af45bebbdbd.jpg: 640x640 1 Pothole, 13.3ms
image 223/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.0689172bca1eeb50732cceb0a2d2dbc7.jpg: 640x640 3 Potholes, 9.1ms
image 224/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.236dc9bd798d6f8c56dbfdc5754e3b68.jpg: 640x640 2 Potholes, 8.5ms
image 225/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.4b148a54550e9eeccfacda80024037b1.jpg: 640x640 2 Potholes, 8.5ms
image 226/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.4bf9653396b984986c36623ca51a9b89.jpg: 640x640 3 Potholes, 11.1ms
image 227/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.b060d919f03803a454f2c92fb25e51ec.jpg: 640x640 4 Potholes, 8.6ms
image 228/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.e5609451b471c39a9c9eaf5ff7b3ac94.jpg: 640x640 3 Potholes, 8.7ms
image 229/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.124fb81faf74b03398e066e6d7cbc9eb.jpg: 640x640 1 Pothole, 8.4ms
image 230/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.6df069fb0a914f27571234fbc1aa446b.jpg: 640x640 1 Pothole, 8.8ms
image 231/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.6dfa17e72f379782ec0b743ba60b8543.jpg: 640x640 1 Pothole, 8.8ms
image 232/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.725f375e91986c9cc15b8f0b2b708cb9.jpg: 640x640 3 Potholes, 8.3ms
image 233/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.8978c4919b51dcb2843c4d992a0bc5f6.jpg: 640x640 3 Potholes, 8.3ms
image 234/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.cc1cf985fedc5bc6d7b3fda53980e6f3.jpg: 640x640 3 Potholes, 8.9ms
image 235/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.635564dad2da056faf9127525b2b6cb4.jpg: 640x640 1 Pothole, 8.3ms
image 236/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.892956f0dc513250fbe68acd8c8b91e1.jpg: 640x640 1 Pothole, 8.5ms
image 237/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.dcd45e3458a07cec9ba93918315d2eaf.jpg: 640x640 1 Pothole, 13.6ms
image 238/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.6ecb9b14009286fba81f2e83e3b7f1e1.jpg: 640x640 1 Pothole, 8.7ms
image 239/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.7a11114bc4c2fe1c330b2eff3ec1b609.jpg: 640x640 1 Pothole, 9.2ms
image 240/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.cf414d706efddcb1fd32a8b42bcfd9a7.jpg: 640x640 1 Pothole, 9.2ms
image 241/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.3427acf9ec34ef05f6fe4a10e7280478.jpg: 640x640 1 Pothole, 9.4ms
image 242/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.5b617b77a960e3e18ff122c7c17a3a90.jpg: 640x640 1 Pothole, 10.3ms
image 243/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.8ec9e835434bab69526356b80fb94588.jpg: 640x640 3 Potholes, 8.5ms
image 244/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.531db54959dd774f8f60dee6d86da08e.jpg: 640x640 8 Potholes, 9.0ms
image 245/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.a8973074639f95f416ad6ba0ccbbb03e.jpg: 640x640 7 Potholes, 9.0ms
image 246/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.dbf09b649249bd7101e280f5a14957c6.jpg: 640x640 7 Potholes, 9.4ms
image 247/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.722924f292c69c3948e42a9759882f26.jpg: 640x640 1 Pothole, 9.9ms
image 248/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.eecd3cdfc404f62988bc698f87ae2e4e.jpg: 640x640 1 Pothole, 8.9ms
image 249/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.f1ecc5629bdf5860ae57d7d27dafb299.jpg: 640x640 1 Pothole, 9.0ms
image 250/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.0347198a0674c89124a169b3ede8d1b8.jpg: 640x640 1 Pothole, 8.5ms
image 251/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.0e60f4ceb45a85c359677ee01c088045.jpg: 640x640 1 Pothole, 8.7ms
image 252/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.15feb8e01893318219d223a82a97d069.jpg: 640x640 1 Pothole, 8.5ms
image 253/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.0bbee8fd461407d8eded3b0ea8e80b4c.jpg: 640x640 3 Potholes, 8.8ms
image 254/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.66e723938cac897ced6246535fe9da8a.jpg: 640x640 2 Potholes, 8.9ms
image 255/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.ace8dee3ec0fba3d7a33c3de2c315f0a.jpg: 640x640 2 Potholes, 8.8ms
image 256/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.66a50a098577b349d7bee13dc9640c2e.jpg: 640x640 2 Potholes, 9.2ms
image 257/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.7ea9f287f872540f14495fae6d91e4e6.jpg: 640x640 3 Potholes, 9.1ms
image 258/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.812d218445763c3ed203a0f9458291f9.jpg: 640x640 2 Potholes, 8.5ms
image 259/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.0216ae6ebea5c3912f51c76bdbae6d19.jpg: 640x640 2 Potholes, 8.8ms
image 260/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.76da5b1b10db8580430d527ce9cc2ac3.jpg: 640x640 2 Potholes, 8.6ms
image 261/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.ca567ffa1d1798025a45cf933eb8a5ba.jpg: 640x640 2 Potholes, 9.2ms
image 262/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.3fd6176b3671e235690487a5759a10f9.jpg: 640x640 1 Pothole, 8.8ms
image 263/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.4a69d95662fb642c674f26ff0ef0a5a9.jpg: 640x640 1 Pothole, 9.2ms
image 264/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.5bfd105d64b4c14a88672ff3fdefc4ea.jpg: 640x640 1 Pothole, 9.0ms
image 265/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.08d902c95a9a00f33f6a031a3ce86eaf.jpg: 640x640 1 Pothole, 8.8ms
image 266/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.89fa1c3f06bec1dfef2b96f692db78b6.jpg: 640x640 1 Pothole, 8.6ms
image 267/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.cedbf41ae88b4faa6ca4e3f9907c9678.jpg: 640x640 2 Potholes, 9.0ms
image 268/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.1db425f6267df87504430ef5a0e23709.jpg: 640x640 4 Potholes, 8.4ms
image 269/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.bb6da014663463596e9cdcb39bfa3d40.jpg: 640x640 5 Potholes, 8.5ms
image 270/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.f0b15cd48578f75fff175242f1d8d9d0.jpg: 640x640 4 Potholes, 9.1ms
image 271/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.4b6780fd03079cb3617f1b6c3893f081.jpg: 640x640 (no detections), 12.6ms
image 272/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.95832ba3432d34d8935a2aa3290fcccc.jpg: 640x640 1 Pothole, 9.0ms
image 273/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.e3dd8c6c5c18f97d98bdf92b1ce043b9.jpg: 640x640 1 Pothole, 9.8ms
image 274/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.0a2080c87c7d3188f8356357203b0e56.jpg: 640x640 1 Pothole, 8.7ms
image 275/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.3377a5ba4a0dc953bac7e48a7a02c227.jpg: 640x640 1 Pothole, 9.1ms
image 276/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.8dd21e07b004f7c29a8d4f97e0a3283b.jpg: 640x640 1 Pothole, 9.8ms
image 277/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.4213f6cdf3dee589a56e5aad14500784.jpg: 640x640 2 Potholes, 8.8ms
image 278/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.5e77130a98b6e44f7347f3fa12d59989.jpg: 640x640 1 Pothole, 8.7ms
image 279/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.72255834e8accc349443c0b769bd3cfc.jpg: 640x640 1 Pothole, 8.7ms
image 280/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.0b505406debb2b509daccf0ebbb62d42.jpg: 640x640 2 Potholes, 9.0ms
image 281/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.4facc206ce5e1fac516bd765c34f7972.jpg: 640x640 2 Potholes, 8.6ms
image 282/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.b4c0b6220ddb190aee07dfd59ffd4277.jpg: 640x640 2 Potholes, 9.0ms
image 283/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.2a110ddd516f4ba59951afbf405d42a5.jpg: 640x640 3 Potholes, 10.5ms
image 284/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.a7d61ad38189d19f47b2407d4c2455fb.jpg: 640x640 3 Potholes, 8.8ms
image 285/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.b11d7439f1c22388eac3f6705cb9e9e4.jpg: 640x640 4 Potholes, 9.1ms
image 286/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.31dc8d894956f53d54a5cec0f94c5e79.jpg: 640x640 3 Potholes, 9.0ms
image 287/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.b341c07e4c85101f52a39109ebb299b0.jpg: 640x640 4 Potholes, 8.8ms
image 288/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.e193c5d94e2cc8ef9b365e8d95e806b1.jpg: 640x640 3 Potholes, 9.1ms
image 289/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.4b2ea541aa7fb1277177d6b23ebb385d.jpg: 640x640 4 Potholes, 11.7ms
image 290/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.7d87d7b5337a40b2c80ce816e643376a.jpg: 640x640 3 Potholes, 9.3ms
image 291/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.d00f21d9a21dd0244263a64b8bda2348.jpg: 640x640 3 Potholes, 12.7ms
image 292/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.4eb10110d12e7623cb7be8caf4f66c5a.jpg: 640x640 7 Potholes, 8.5ms
image 293/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.4f06bc1e4c4ca8189e8136ed45695acc.jpg: 640x640 5 Potholes, 14.1ms
image 294/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.9de311e1f9663a4ed2159ebc521295e7.jpg: 640x640 7 Potholes, 8.6ms
image 295/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.19e0e3168e988c6c8f8829f34c68003b.jpg: 640x640 2 Potholes, 9.1ms
image 296/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.d80a26f98663f0c2a92282a15fbf262b.jpg: 640x640 2 Potholes, 11.0ms
image 297/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.e36dc9e60b7e977f6e7d2d1a323b9c73.jpg: 640x640 2 Potholes, 8.7ms
image 298/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.27fc3b4425584f6404f2f0feb976f621.jpg: 640x640 1 Pothole, 8.8ms
image 299/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.74655743f4f3d67bb2e21be9727a7946.jpg: 640x640 1 Pothole, 8.8ms
image 300/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.d45b506908081039adeb183e4ca51da8.jpg: 640x640 1 Pothole, 12.5ms
image 301/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.40ad961da5aeef8f6c97d772ee2b618e.jpg: 640x640 1 Pothole, 8.6ms
image 302/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.d190a911a9e6195bd2a9e3c67869064a.jpg: 640x640 1 Pothole, 8.7ms
image 303/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.ff49694bdd544a47be71713dc6c46593.jpg: 640x640 1 Pothole, 14.0ms
image 304/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.456e08f670a110afa6a40b982a029cba.jpg: 640x640 1 Pothole, 8.6ms
image 305/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.9b0074a18a22ac4ecb7f30b6dabe3fa5.jpg: 640x640 1 Pothole, 8.5ms
image 306/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.ad6fbe4b6c5100ec699f1262c74a5988.jpg: 640x640 1 Pothole, 8.9ms
image 307/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.6bb67326dc3fab2b66c9c65a3364504c.jpg: 640x640 2 Potholes, 10.7ms
image 308/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.de0280b56ab0a3f21fab3b5986a16080.jpg: 640x640 2 Potholes, 8.6ms
image 309/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.f71278c900f04d9ef934d1671e450fbf.jpg: 640x640 2 Potholes, 13.6ms
image 310/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.1becdc6413b7b22fdf55ade9f266316e.jpg: 640x640 3 Potholes, 9.2ms
image 311/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.d9c8cdd8aea8314208624edb692b09cb.jpg: 640x640 3 Potholes, 8.5ms
image 312/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.da6e0c0a3dd3854e5710bcbe50478725.jpg: 640x640 3 Potholes, 9.6ms
image 313/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.9f723a6b8ef272c7a5899faf7f892aee.jpg: 640x640 1 Pothole, 8.7ms
image 314/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.a0b3e7cf4174b760f731630a0d8ffcda.jpg: 640x640 1 Pothole, 8.5ms
image 315/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.aa439f808046db1dd790b1dd73aec45f.jpg: 640x640 1 Pothole, 9.2ms
image 316/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.0ec6700cefc477019e71e49c69ad09c0.jpg: 640x640 4 Potholes, 8.5ms
image 317/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.50845450b158301ab47748beb98fcf79.jpg: 640x640 6 Potholes, 8.9ms
image 318/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.577cbbb4c72285178adaa8c046e4f59d.jpg: 640x640 4 Potholes, 8.4ms
image 319/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.4210790f4f714436b3d5ee9671a99005.jpg: 640x640 3 Potholes, 9.1ms
image 320/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.6280cd42dfe06a2d66148f5b5af6eb1b.jpg: 640x640 3 Potholes, 8.6ms
image 321/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.a2e98283cbb1e83a8af07620af2cb3d6.jpg: 640x640 4 Potholes, 9.1ms
image 322/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.159340ca71da523b0e2a61122f85d352.jpg: 640x640 1 Pothole, 11.5ms
image 323/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.1dbe9dca4ca6a1f1f88b41787b9a691c.jpg: 640x640 1 Pothole, 13.0ms
image 324/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.a5ea9340a3f317eab9bc842a8d252835.jpg: 640x640 1 Pothole, 9.1ms
image 325/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.04b3324ec3044431090e8b9359b88bf7.jpg: 640x640 3 Potholes, 8.8ms
image 326/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.9d3f63dd5136bc8b5e16b4fdf3e5b5e7.jpg: 640x640 4 Potholes, 8.7ms
image 327/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.f7b0fe3cd7b84157379a0c10372ef0fc.jpg: 640x640 4 Potholes, 8.6ms
image 328/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.aa73fb95553763a3d73a6b849fa4aa11.jpg: 640x640 1 Pothole, 8.5ms
image 329/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.bc36d7a2ab5872952f3237e3cb9a0b06.jpg: 640x640 2 Potholes, 9.3ms
image 330/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.bd5f146daa5ac308b6b501d1c6f1d33d.jpg: 640x640 1 Pothole, 8.5ms
image 331/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.14efc266ef488a27f59064a50d804ca0.jpg: 640x640 7 Potholes, 9.2ms
image 332/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.a751fa82eb82745f4b5f94656b4d1455.jpg: 640x640 7 Potholes, 9.8ms
image 333/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.b4fc5446d26d4211eece93e58f12ae73.jpg: 640x640 8 Potholes, 8.8ms
image 334/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.bfb22269f25cce0b5e7ff3054f61734b.jpg: 640x640 8 Potholes, 8.4ms
image 335/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.d1dd38a0e09eda8c0d4239a5bdedd0d5.jpg: 640x640 6 Potholes, 8.5ms
image 336/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.e6fd78cbf2dc3c11a24ccdc8ddc5ee25.jpg: 640x640 7 Potholes, 8.9ms
image 337/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.4152b4c3ac522f79019ca14cc242eb95.jpg: 640x640 2 Potholes, 8.5ms
image 338/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.dfe14e39a7d78d0edb998700007564e1.jpg: 640x640 2 Potholes, 8.7ms
image 339/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.e7e49a6cb4809947d14a95047f49964e.jpg: 640x640 2 Potholes, 8.5ms
image 340/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.15d03eb1f1aea5ae78f46547ddb947b5.jpg: 640x640 3 Potholes, 8.8ms
image 341/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.1ef52a6b450c206cfdcc425311a07859.jpg: 640x640 3 Potholes, 8.6ms
image 342/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.2f5901a40332f282bcafe34b90f4f5ec.jpg: 640x640 3 Potholes, 8.5ms
image 343/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.1494a9c164c52d1cd9b45dda0e1b5bab.jpg: 640x640 1 Pothole, 8.8ms
image 344/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.848346f3e53f08683c1c17d6f1f7437e.jpg: 640x640 1 Pothole, 8.4ms
image 345/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.f4098546b7c8b3af5f3463c6f63950dd.jpg: 640x640 1 Pothole, 13.8ms
image 346/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.59141047e39ac5b57f2f9b1f6a763936.jpg: 640x640 1 Pothole, 14.4ms
image 347/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.64732a7585f4f1dc942fda7dce11b947.jpg: 640x640 1 Pothole, 9.1ms
image 348/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.8497a34a9e5ae4ee66830f050bbd69ac.jpg: 640x640 1 Pothole, 8.9ms
image 349/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.6e6834e9f26a64c34edc2093c2133e77.jpg: 640x640 2 Potholes, 9.3ms
image 350/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.bc29e6e5e745094cb40ab4d9023e2ad3.jpg: 640x640 2 Potholes, 8.3ms
image 351/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.c7c54a2bd8c106f1e8959e88238d0f3c.jpg: 640x640 2 Potholes, 8.9ms
image 352/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.149b89f603991e65409d2c817ffa8def.jpg: 640x640 4 Potholes, 10.4ms
image 353/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.c953bfbb7502053e8a904197dc52e925.jpg: 640x640 4 Potholes, 8.5ms
image 354/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.caa8259752f70e86575c84bdc5a6ac3d.jpg: 640x640 4 Potholes, 8.6ms
image 355/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.b4c9d0f7d582f53d9355532af217097e.jpg: 640x640 1 Pothole, 8.8ms
image 356/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.f81c589abb7f7593acd9a66bd74c5d7f.jpg: 640x640 1 Pothole, 12.3ms
image 357/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.fa5cabd66a044525bb74f3c49acf54fe.jpg: 640x640 1 Pothole, 10.6ms
image 358/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.28fccf586765c2246d9b66e5eb8f3584.jpg: 640x640 4 Potholes, 8.4ms
image 359/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.43a237ef9bd9dd28d4f798a87853f1fa.jpg: 640x640 3 Potholes, 14.7ms
image 360/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.73b9192a4cd0112e00efe9158aff9459.jpg: 640x640 3 Potholes, 13.0ms
image 361/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.27ea296703d09cf2fc0438826eb25216.jpg: 640x640 6 Potholes, 8.6ms
image 362/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.755180833958d9091b3bb6a24b34f8c9.jpg: 640x640 7 Potholes, 8.4ms
image 363/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.8f2076aea9dd8405d1992210d01df6ef.jpg: 640x640 6 Potholes, 9.0ms
image 364/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.5c0e8c26b2a5c454bf448e0b6f2ecd97.jpg: 640x640 2 Potholes, 9.0ms
image 365/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.6f72a29392e37293dead7ab866cff716.jpg: 640x640 2 Potholes, 11.1ms
image 366/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.c4aa15eeb12eb5d97a7d89fc47d7cca6.jpg: 640x640 2 Potholes, 9.1ms
image 367/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.6cf12918112f73e428cb65a891665604.jpg: 640x640 2 Potholes, 9.1ms
image 368/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.8dee3d4ab5ccd2161b6e520c20a0f812.jpg: 640x640 2 Potholes, 13.6ms
image 369/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.8f0271d2f7004b60ecb8bceed3c799c6.jpg: 640x640 3 Potholes, 9.1ms
image 370/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.3432cc48d4f6e7d8002d6eb4642495ce.jpg: 640x640 1 Pothole, 9.3ms
image 371/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.8288a409c841a344ed2174080fddc6a5.jpg: 640x640 1 Pothole, 10.1ms
image 372/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.c898c9588e06414254eb3a8101ade893.jpg: 640x640 1 Pothole, 9.5ms
image 373/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.0a72277f1c31da47eb26ecbb3b7e6296.jpg: 640x640 1 Pothole, 9.0ms
image 374/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.42f875819ed5ac0facfa51b46a123fc2.jpg: 640x640 1 Pothole, 14.4ms
image 375/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.61dffd0851eee83ef24f448d88ffeebe.jpg: 640x640 1 Pothole, 11.3ms
image 376/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.0df6511df9c5cff60f86c536ab1635a1.jpg: 640x640 2 Potholes, 9.8ms
image 377/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.d07142e52129da403acd41a7a03fabae.jpg: 640x640 3 Potholes, 11.8ms
image 378/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.d864bfac7ff1440f8c98557209aa3c0f.jpg: 640x640 2 Potholes, 9.6ms
image 379/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.1cc262720c9af6dae71db8520773160b.jpg: 640x640 1 Pothole, 8.9ms
image 380/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.7ebc863c89590ff2a83f607dcbc68e34.jpg: 640x640 1 Pothole, 9.1ms
image 381/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.9beb79771a7b6709183e6cca511ff830.jpg: 640x640 1 Pothole, 9.2ms
image 382/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.17df77133740bc613a4696554928cd5c.jpg: 640x640 (no detections), 9.1ms
image 383/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.9e660e4d87ccc3b8a3bb1d2bf2745aa8.jpg: 640x640 2 Potholes, 9.4ms
image 384/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.f64415f2a4f04934c63eb9e6ddc58b03.jpg: 640x640 1 Pothole, 9.6ms
image 385/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.554ed8a1140e2e47539b5825358f3491.jpg: 640x640 4 Potholes, 13.6ms
image 386/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.7b2fd4f45f1134c636d1a6fe51744d46.jpg: 640x640 4 Potholes, 9.0ms
image 387/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.93663c16c298ed591b91eadfc6e144ae.jpg: 640x640 5 Potholes, 9.1ms
image 388/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.0f4643d64aafaa72e5e291cb8bdfae57.jpg: 640x640 5 Potholes, 9.2ms
image 389/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.5b9be4976067ff481a06a5d7f1916133.jpg: 640x640 6 Potholes, 9.1ms
image 390/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.cbf21b0811a22af9d7b2ebaffbd1d938.jpg: 640x640 7 Potholes, 12.4ms
image 391/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.a3cbf0b1296da7cd3ea5d46525c3b5ad.jpg: 640x640 1 Pothole, 9.0ms
image 392/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.a889a66f2a2a27646c6d2102e5b2fb17.jpg: 640x640 1 Pothole, 9.0ms
image 393/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.b57094138ac0e7270328a9956b2f616e.jpg: 640x640 1 Pothole, 9.1ms
image 394/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.2909e1821a38907edf8d4f9d87cfa7fa.jpg: 640x640 1 Pothole, 9.0ms
image 395/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.6184619642f841a8598f0fee9f9cb770.jpg: 640x640 1 Pothole, 14.5ms
image 396/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.6e835a0b390d9b7815c33f5834b17a42.jpg: 640x640 1 Pothole, 13.7ms
image 397/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.0c7a3fd9a3840f28576edfe095f5b2c8.jpg: 640x640 2 Potholes, 10.3ms
image 398/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.2d988998b2a995bdee0f0282803e4801.jpg: 640x640 1 Pothole, 9.1ms
image 399/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.deadb4c9f8357cd2f7d51f91cb1da866.jpg: 640x640 2 Potholes, 9.7ms
image 400/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.90193421f8c21ded95e0cbf404f513dd.jpg: 640x640 2 Potholes, 9.2ms
image 401/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.a3ea467a7cc80896f04d44bea680785d.jpg: 640x640 2 Potholes, 9.1ms
image 402/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.fa08a66eed53518165efed59a5ab8eb4.jpg: 640x640 2 Potholes, 9.3ms
image 403/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.2fdb4a020ffa343ae74099d9d2876c41.jpg: 640x640 5 Potholes, 9.3ms
image 404/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.38a2bdb803b4ab772ebd6e40119129f8.jpg: 640x640 6 Potholes, 9.5ms
image 405/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.9841cb1e9b954b905fb2c6573c987199.jpg: 640x640 5 Potholes, 9.8ms
image 406/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.1d994545861b8acd262681fa0d99058b.jpg: 640x640 1 Pothole, 9.9ms
image 407/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.60c38b7dd52f66a6bf7fd05386915aef.jpg: 640x640 1 Pothole, 16.8ms
image 408/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.9cb2afb0020b7d0e4220ed2f05fc3014.jpg: 640x640 1 Pothole, 9.7ms
image 409/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.1ddbaa9733534658408a1a14372ef0b9.jpg: 640x640 6 Potholes, 15.0ms
image 410/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.2d65914b2455aaeff16e8ef4321a9ae2.jpg: 640x640 7 Potholes, 9.4ms
image 411/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.fe9146427e9147a64aa2edd89579fa80.jpg: 640x640 6 Potholes, 9.3ms
image 412/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.58d537e75af0a9fe40651c5c9e5c6f10.jpg: 640x640 1 Pothole, 11.2ms
image 413/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.5b8acd3a5f571d5d7e245e1f950b92cc.jpg: 640x640 1 Pothole, 9.0ms
image 414/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.93cf2350f3e2eb8b0e28c90904582e06.jpg: 640x640 1 Pothole, 9.3ms
image 415/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.7019bcfb7ed85d62a0068bb4d90894d6.jpg: 640x640 5 Potholes, 9.5ms
image 416/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.aa2fce633443ee1d8c81896a8ea32dae.jpg: 640x640 5 Potholes, 13.8ms
image 417/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.e7df3aab64f144506e0d276e972a5f73.jpg: 640x640 4 Potholes, 9.0ms
image 418/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.5dc1fecc0c1bd209ca05c88618583504.jpg: 640x640 4 Potholes, 9.1ms
image 419/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.821cd6dd9ff8fdcc6286183f5688755a.jpg: 640x640 4 Potholes, 9.0ms
image 420/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.fcdd3609bc1d58a34086a5a3e6ce2097.jpg: 640x640 4 Potholes, 10.2ms
image 421/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.47ec4246b71311c95725c8e5c02049a3.jpg: 640x640 2 Potholes, 11.8ms
image 422/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.4a53c38246579af08ffa2398e0d809aa.jpg: 640x640 2 Potholes, 9.6ms
image 423/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.d407eb770f6e539c7d1021089da068bc.jpg: 640x640 2 Potholes, 9.1ms
image 424/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.50fba6db0c31398bb0ad36b22f1cf88f.jpg: 640x640 1 Pothole, 12.5ms
image 425/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.9be8ea96b8bb643747babec0e006e3a8.jpg: 640x640 1 Pothole, 9.3ms
image 426/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.cd93dd54b669257758fd0cdafe4f0032.jpg: 640x640 1 Pothole, 9.4ms
image 427/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.3af45c18af9183dbab32f9e489034912.jpg: 640x640 3 Potholes, 9.6ms
image 428/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.76bee172574bbacef55e6935f031bf20.jpg: 640x640 2 Potholes, 14.4ms
image 429/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.b88fd61a801b35b27593f7fcbfed4f1b.jpg: 640x640 2 Potholes, 8.9ms
image 430/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.2b6a7b01bb03728cc1c166db16e462e5.jpg: 640x640 1 Pothole, 9.9ms
image 431/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.998892ecacb90555cc17a10e7717e639.jpg: 640x640 1 Pothole, 9.1ms
image 432/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.a966d2dffd8b171b302656a73d5b9d35.jpg: 640x640 1 Pothole, 9.3ms
image 433/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.1d9a2cc87b0162c31ffde047cca87a81.jpg: 640x640 1 Pothole, 9.5ms
image 434/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.6219b6cecf8a84cc4bd3139144ade94f.jpg: 640x640 1 Pothole, 9.5ms
image 435/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.b1224cd0b28b41a38580f8f73315e5be.jpg: 640x640 1 Pothole, 9.8ms
image 436/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.4c610d0dfdc177368e2334a82ff5513a.jpg: 640x640 12 Potholes, 9.4ms
image 437/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.55be0618279efba17a40682b25ec9fab.jpg: 640x640 10 Potholes, 12.0ms
image 438/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.98e8661b5363f6c6bcf399738c291cf2.jpg: 640x640 11 Potholes, 14.0ms
image 439/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.43407daa6e772a254285f6bf1098a9b2.jpg: 640x640 3 Potholes, 12.7ms
image 440/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.5924896fbc8c112511de0c67db59435b.jpg: 640x640 3 Potholes, 9.5ms
image 441/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.97039c9e51a9baa0832be4ebd044110d.jpg: 640x640 3 Potholes, 9.5ms
image 442/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.4e80309c7e97b759c02f198b4f8258e0.jpg: 640x640 5 Potholes, 9.5ms
image 443/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.9bb1142dec3532e4e8b716d3a438ac05.jpg: 640x640 6 Potholes, 9.2ms
image 444/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.a52b175e07343220015b707b9886e0e1.jpg: 640x640 6 Potholes, 9.3ms
image 445/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.323d61640ba6fcc13042b787260e36bb.jpg: 640x640 (no detections), 9.7ms
image 446/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.87ee237323b54bf65900f2fe8742e27b.jpg: 640x640 1 Pothole, 9.5ms
image 447/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.c49fc76803dd19f43665c0ced1377750.jpg: 640x640 1 Pothole, 9.9ms
image 448/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.002253fdb0ed4584e018df6ffa261117.jpg: 640x640 4 Potholes, 12.8ms
image 449/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.0a7c7409d5dc54a17f739f3fcc1dfbfb.jpg: 640x640 4 Potholes, 10.8ms
image 450/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.9c136160d287bbdaaaa5e6027f75ba97.jpg: 640x640 4 Potholes, 9.3ms
image 451/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.46a9e2047dced3e94c4fa2aab121859b.jpg: 640x640 13 Potholes, 12.4ms
image 452/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.5205af7f7d0021ecd8ac84b895d7be99.jpg: 640x640 11 Potholes, 9.6ms
image 453/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.ce4479c25a7c7d6c8b8d001c488a4f6d.jpg: 640x640 13 Potholes, 14.6ms
image 454/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.98225472f61e9de4245a1da0fc036230.jpg: 640x640 1 Pothole, 14.2ms
image 455/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.cd2ef0884568491ec2ce61a16f085324.jpg: 640x640 1 Pothole, 9.9ms
image 456/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.d21f3ba7cea2b4ce92516d08a7ea0c6d.jpg: 640x640 1 Pothole, 9.7ms
image 457/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.792c2b69462ae79fca0cca74330fe0e7.jpg: 640x640 3 Potholes, 9.7ms
image 458/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.85ffbef727ecf81dbdc795cf0071fde4.jpg: 640x640 3 Potholes, 13.7ms
image 459/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.8d4273fdb3b241213a5685129666cde6.jpg: 640x640 2 Potholes, 12.5ms
image 460/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.d1a4a881471530c27e8e6acefaae408d.jpg: 640x640 1 Pothole, 12.1ms
image 461/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.e2e29a600dcb8450df911104cf88b38d.jpg: 640x640 1 Pothole, 10.3ms
image 462/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.ec1e5c4b6a23a9196e33d1937e2fddcf.jpg: 640x640 1 Pothole, 10.2ms
image 463/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.102a71b41c699ef91c98ee9acb233241.jpg: 640x640 10 Potholes, 9.2ms
image 464/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.161161ebb6d47b347f2c6012b1c88898.jpg: 640x640 12 Potholes, 12.4ms
image 465/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.81490c823fe0f5ba5fc351b36c4fab79.jpg: 640x640 13 Potholes, 9.4ms
image 466/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.387d558e33ac4c0afd2b684708d66271.jpg: 640x640 1 Pothole, 9.3ms
image 467/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.aeb00c47b3179ead074b8f7b52971655.jpg: 640x640 1 Pothole, 11.0ms
image 468/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.eb289e54650f25791d195ce8f1936cf8.jpg: 640x640 1 Pothole, 13.5ms
image 469/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.1cfd00374439fd72effee65dee2cfbf3.jpg: 640x640 1 Pothole, 12.3ms
image 470/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.44efc10266e3c4cb78efde437755b21f.jpg: 640x640 2 Potholes, 9.4ms
image 471/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.a7c2022cd08be88cf40fb7473457b1bd.jpg: 640x640 2 Potholes, 10.1ms
image 472/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.20f2248677b69cd0b78705416c578c8f.jpg: 640x640 5 Potholes, 9.4ms
image 473/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.364ad6841f1f703e567868636d3c5d9d.jpg: 640x640 4 Potholes, 9.8ms
image 474/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.91f845ebe6009e9c3be546fa34f1fb62.jpg: 640x640 6 Potholes, 9.7ms
image 475/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.0dbe6d0d6778748a85926379c5f2e9e2.jpg: 640x640 1 Pothole, 9.8ms
image 476/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.842cdce727f91b17dbe3c3da0eb40f53.jpg: 640x640 1 Pothole, 9.1ms
image 477/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.f00b26bc9e0e6d37dfc28fb9dcca8d31.jpg: 640x640 1 Pothole, 9.7ms
image 478/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.40eb24734e3476c926a4c70fd547500c.jpg: 640x640 2 Potholes, 10.1ms
image 479/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.c2b4badba5de7ededb5266fa40bff815.jpg: 640x640 1 Pothole, 12.5ms
image 480/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.e5da98374205a9ad95cb1355a5d30d9a.jpg: 640x640 1 Pothole, 9.0ms
image 481/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.123096f07316bdbbb775d4e0edbfcb5e.jpg: 640x640 1 Pothole, 9.0ms
image 482/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.56d84fad76218d5963847d758616e653.jpg: 640x640 1 Pothole, 9.1ms
image 483/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.684fdc990a5a35d7a5d296857475e65d.jpg: 640x640 1 Pothole, 11.7ms
image 484/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.2bdafbee1a88e6d2a7fdf3367073e72e.jpg: 640x640 2 Potholes, 11.8ms
image 485/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.c3f2aadaa48b640a80c3ab44e41ffb04.jpg: 640x640 3 Potholes, 15.2ms
image 486/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.e85f33f618c8853f1b77a75be13c5a95.jpg: 640x640 2 Potholes, 16.2ms
image 487/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.51113a90d61bab00d4fe0edcd5e45d9b.jpg: 640x640 1 Pothole, 12.5ms
image 488/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.e2281030be53c236e0e2f7731df0f5b3.jpg: 640x640 1 Pothole, 9.0ms
image 489/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.e5f176bec46993c0c6cda6588e9d5ecf.jpg: 640x640 1 Pothole, 9.0ms
image 490/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.87156b9d129afc59b232dcc6247af143.jpg: 640x640 4 Potholes, 9.2ms
image 491/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.9ebbae06b203eacb7891199e3ae03e78.jpg: 640x640 5 Potholes, 8.9ms
image 492/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.e2570badb95698d083c54eec726d833c.jpg: 640x640 3 Potholes, 8.7ms
image 493/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.3b5e34d314c7ded93c3733fce130b12a.jpg: 640x640 3 Potholes, 8.6ms
image 494/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.948fb2d38ed70096fb1c644ab1e89973.jpg: 640x640 3 Potholes, 8.6ms
image 495/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.b0bf8384c5c25bbefa58c5f1e0893b5d.jpg: 640x640 3 Potholes, 10.0ms
image 496/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.5220d64d0af700ca8a131e4a7015591a.jpg: 640x640 4 Potholes, 8.8ms
image 497/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.56803c885d93883808e18e5177fb7bfc.jpg: 640x640 4 Potholes, 9.1ms
image 498/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.75b74368c26af7be08174514a5e86a35.jpg: 640x640 4 Potholes, 10.3ms
image 499/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.152a3d1b716ce34ef95d003bf13d19e3.jpg: 640x640 1 Pothole, 9.2ms
image 500/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.521af54aebbf6c4a9777b1a21b2aa1a6.jpg: 640x640 1 Pothole, 9.2ms
image 501/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.a9b5278454dd0e6b846f8f5b345c8c0a.jpg: 640x640 1 Pothole, 8.6ms
image 502/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.03cbcc554416b49037040fba4614781a.jpg: 640x640 1 Pothole, 8.7ms
image 503/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.1de461b1d76feb49d4f027f59f73b1ff.jpg: 640x640 1 Pothole, 8.6ms
image 504/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.a69a7de19ef308ef7ee254d1016bbc97.jpg: 640x640 1 Pothole, 12.9ms
image 505/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.a8c2971b57a19e0180c662e4263aa9b5.jpg: 640x640 2 Potholes, 8.3ms
image 506/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.d32464e992476781dea9e98988a24869.jpg: 640x640 2 Potholes, 8.7ms
image 507/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.f66059d5449c804a491dfe941e69a338.jpg: 640x640 2 Potholes, 8.5ms
image 508/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.4842e778156eb9f2ba5cf237fe3e4a62.jpg: 640x640 2 Potholes, 11.8ms
image 509/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.71c7e5d6a9c5da8e4043d68da5539b8e.jpg: 640x640 2 Potholes, 8.5ms
image 510/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.8761505829f0631199e1d3daa72bea42.jpg: 640x640 2 Potholes, 8.2ms
image 511/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.1d4e40786715d3c83bace206f962c042.jpg: 640x640 1 Pothole, 8.4ms
image 512/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.72ed26dca533a7e479c08103a5569c8f.jpg: 640x640 1 Pothole, 10.2ms
image 513/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.84f5afae7a869cf8e987823d48ac52ea.jpg: 640x640 1 Pothole, 9.6ms
image 514/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.58b2ce2cbcbc68eb15a507b2cf8643e2.jpg: 640x640 2 Potholes, 8.7ms
image 515/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.cd5aa1c41d3e62814135dde19300f171.jpg: 640x640 3 Potholes, 8.6ms
image 516/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.eb89bc0d42a73c41261305e01a9138f8.jpg: 640x640 3 Potholes, 8.8ms
image 517/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.b9479d0a39352215db193b6877e389ff.jpg: 640x640 1 Pothole, 8.7ms
image 518/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.d1996e7e3608d23e5111b7e3f95a5353.jpg: 640x640 1 Pothole, 8.5ms
image 519/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.ffefe6a973c89146c61be0770eed07c3.jpg: 640x640 1 Pothole, 8.4ms
image 520/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.17e79b0608bc082d9380d713fb69f5ef.jpg: 640x640 5 Potholes, 8.3ms
image 521/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.1f39da1d67e7044320a0a602d9819741.jpg: 640x640 7 Potholes, 9.1ms
image 522/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.9fea650aedf412fa2559d06c40de20b9.jpg: 640x640 5 Potholes, 8.5ms
image 523/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.370eca9f98e828703d153a162dba5233.jpg: 640x640 3 Potholes, 8.4ms
image 524/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.50f47f18cb6f3fb3650fe72d391d9187.jpg: 640x640 3 Potholes, 8.7ms
image 525/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.881c629f5ecaecfe726c74a522b8decb.jpg: 640x640 3 Potholes, 13.2ms
image 526/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.3600a16f8f27cc0334db7f049f787eb1.jpg: 640x640 1 Pothole, 9.6ms
image 527/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.4ef818f9e780452ddfb899a2a2b6b03a.jpg: 640x640 1 Pothole, 9.1ms
image 528/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.84ff02582ef46f86d24bc848af4be07b.jpg: 640x640 1 Pothole, 8.9ms
image 529/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.2b21a6093d6fa16efa900074dc3542cd.jpg: 640x640 1 Pothole, 9.2ms
image 530/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.821c1245c0e331fa2bf691e53b6d5d99.jpg: 640x640 1 Pothole, 8.7ms
image 531/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.b5aea8cb48e0a04950551fd41e277ea6.jpg: 640x640 1 Pothole, 8.7ms
image 532/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.37977cf11bbe714965571c19d72ffee0.jpg: 640x640 2 Potholes, 12.2ms
image 533/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.b78c512c8993fd44bdb300776d9dc3f4.jpg: 640x640 2 Potholes, 10.7ms
image 534/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.d633fdb04731410dc8d1d1da15a1363a.jpg: 640x640 1 Pothole, 8.7ms
image 535/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.0940348a848c8c97f3fff9383cb3cdc8.jpg: 640x640 19 Potholes, 8.9ms
image 536/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.1174887817ec51f80c793c0f75927824.jpg: 640x640 16 Potholes, 8.8ms
image 537/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.f773855cfccc522535461bb0d18add8a.jpg: 640x640 13 Potholes, 8.5ms
image 538/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.2940a75b7dd32070029f18fa382ebdc5.jpg: 640x640 (no detections), 13.1ms
image 539/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.d35f113f002fcda07300a87c4953d158.jpg: 640x640 (no detections), 9.6ms
image 540/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.fb982b0515cfdf43b2ced2b2b087b90d.jpg: 640x640 (no detections), 10.1ms
image 541/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.17b7362dd7e828ab11f01d0a23db3a50.jpg: 640x640 4 Potholes, 9.5ms
image 542/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.4aea4d06478697bd7b70b72cd80d1546.jpg: 640x640 4 Potholes, 9.0ms
image 543/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.e9cd27fe43663beff58ee6e1f8f7f3d2.jpg: 640x640 4 Potholes, 8.6ms
image 544/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.3cc5232b879d313c05dc30ad7b066f99.jpg: 640x640 4 Potholes, 8.5ms
image 545/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.40b75b0e55a33c21bc33826831384287.jpg: 640x640 4 Potholes, 8.6ms
image 546/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.add0f9e0bd6d5cd8a32bde8eac8b1c9f.jpg: 640x640 5 Potholes, 9.1ms
image 547/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.3a6cb54980b1b14196158b140c277034.jpg: 640x640 1 Pothole, 8.7ms
image 548/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.d7c110298e8deb6c82e6a13278880bc1.jpg: 640x640 1 Pothole, 8.6ms
image 549/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.e87935b40ac72eeef1e183a1b784e3e9.jpg: 640x640 1 Pothole, 8.8ms
image 550/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.141623e970a3b93aa37e180a3efb32b8.jpg: 640x640 2 Potholes, 9.3ms
image 551/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.dbb4e5f29da50d7f69800bd02df7cd28.jpg: 640x640 3 Potholes, 8.8ms
image 552/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.fef279db67c02cffe5e03d2f062e76c7.jpg: 640x640 2 Potholes, 8.6ms
image 553/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.da02919be110cad52f54add553bf8ff6.jpg: 640x640 2 Potholes, 12.3ms
image 554/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.dba8be87e1cad6fbbc6f68728f95a85d.jpg: 640x640 3 Potholes, 8.9ms
image 555/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.f986b908d11e3ccfab5acb989bc9aa7b.jpg: 640x640 2 Potholes, 9.0ms
image 556/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.916c6c1f6b88b55f48b08e48481fe26f.jpg: 640x640 1 Pothole, 8.6ms
image 557/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.99d4097fac96d5f035d066f05bd3dcac.jpg: 640x640 1 Pothole, 14.5ms
image 558/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.c50896cfc9b1facb5cd4234bb9be07b6.jpg: 640x640 1 Pothole, 9.6ms
image 559/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.4db592c400a3bacb104e601c50c1fcd0.jpg: 640x640 9 Potholes, 8.6ms
image 560/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.d3357165b543f6d3e0f729dfa3373855.jpg: 640x640 9 Potholes, 14.3ms
image 561/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.f52085b2d1744eeb56ed5a4b8ba0fb0f.jpg: 640x640 8 Potholes, 8.5ms
image 562/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.0b69a3e42d0f31491655adaa801c3160.jpg: 640x640 2 Potholes, 8.9ms
image 563/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.7047af1ffe9d3d01ef41591660a7bd37.jpg: 640x640 2 Potholes, 8.4ms
image 564/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.c8d57f2324c265fbe81623987f86e3d8.jpg: 640x640 2 Potholes, 8.4ms
image 565/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.4d2787d8d27bef19c2759899a13581ad.jpg: 640x640 2 Potholes, 8.8ms
image 566/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.5e808c2edeb8c3db416e41b5cf956575.jpg: 640x640 2 Potholes, 9.1ms
image 567/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.74ff92157ffacab71cc6f120cb5663a6.jpg: 640x640 2 Potholes, 9.3ms
image 568/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.1e8c9b6d903b795ead837d1334fbe4ff.jpg: 640x640 1 Pothole, 9.0ms
image 569/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.dbbb1c368f5ada95ebf45d45838b1bd7.jpg: 640x640 1 Pothole, 9.0ms
image 570/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.dfa9d788bc69cea17fc9c3308d1668a7.jpg: 640x640 2 Potholes, 10.6ms
image 571/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.7bb3eef4deaf2aa9c2fb506c168e3f77.jpg: 640x640 2 Potholes, 8.6ms
image 572/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.a71dc55407736290b223f5ac71e8f714.jpg: 640x640 2 Potholes, 9.1ms
image 573/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.c7dd071d0249ce1a01f71938c20eec2e.jpg: 640x640 2 Potholes, 12.3ms
image 574/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.b885bd57535b8adc199e02edae6a24e9.jpg: 640x640 1 Pothole, 11.9ms
image 575/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.c5a8cb20f04ee8a90e2295b8e74a9dd1.jpg: 640x640 1 Pothole, 9.1ms
image 576/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.ce935f81e259f69e3b8930f080141ac5.jpg: 640x640 1 Pothole, 9.6ms
image 577/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.07110750200ea396e69160ea5e20ce7c.jpg: 640x640 2 Potholes, 9.3ms
image 578/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.b5c407806790722e3104e1521d054f67.jpg: 640x640 1 Pothole, 9.2ms
image 579/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.e7a3996bac750b9ba88cc570c1aad418.jpg: 640x640 2 Potholes, 11.6ms
image 580/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.5f35e42f4f2abf32c388f70cd219d8cb.jpg: 640x640 3 Potholes, 9.6ms
image 581/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.68853a3577e0a03df1d073ae0713d353.jpg: 640x640 3 Potholes, 9.5ms
image 582/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.88ad29d468c207f23e22f16b5129a5fe.jpg: 640x640 3 Potholes, 9.0ms
image 583/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.7566ef76e82dccc357ff1691393cdff8.jpg: 640x640 2 Potholes, 9.2ms
image 584/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.a2d3901d28aa5d5a7040913eaffb5011.jpg: 640x640 2 Potholes, 8.9ms
image 585/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.ea29a2566cbd0e48094adae5b4cf7087.jpg: 640x640 2 Potholes, 9.1ms
image 586/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.5fbe76ea8a76e35b41970ccb6f5e4730.jpg: 640x640 6 Potholes, 9.0ms
image 587/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.ead443dd9f37ce2e29069e9049d804e7.jpg: 640x640 5 Potholes, 8.9ms
image 588/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.f3d79095cd22dd76dc99c447f82e50d0.jpg: 640x640 5 Potholes, 9.9ms
image 589/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.38b94f88de5e174741f7f535773d0c40.jpg: 640x640 5 Potholes, 9.1ms
image 590/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.bc4a2c2beca4c0a398dbc10fc7efc934.jpg: 640x640 4 Potholes, 9.4ms
image 591/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.f708e8dd61e5d6c7f0417a6e7befa47d.jpg: 640x640 4 Potholes, 9.5ms
image 592/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.d8822e3b6a7c8fe4c73543cd7d7ae9cd.jpg: 640x640 1 Pothole, 16.1ms
image 593/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.def4f32d6ba09bcb7a22b8a34a7c8115.jpg: 640x640 1 Pothole, 14.0ms
image 594/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.f05e2cd157034e39c0eb9db8e7f09bb5.jpg: 640x640 1 Pothole, 9.6ms
image 595/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.1ee5c3ca066d62d6b4aed03d3575b5ea.jpg: 640x640 1 Pothole, 9.8ms
image 596/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.540025fd1af3f0c105d5a5f489e307da.jpg: 640x640 1 Pothole, 9.8ms
image 597/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.7815bad4623e4bb70645806ea5a77a47.jpg: 640x640 1 Pothole, 9.4ms
image 598/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.7cc54c3290a15bece4443e1f76a5800c.jpg: 640x640 1 Pothole, 9.0ms
image 599/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.a5904fe5b078b76264e6bf4b9a026627.jpg: 640x640 2 Potholes, 9.4ms
image 600/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.f0c232122401c2974af21cab0c286439.jpg: 640x640 1 Pothole, 9.6ms
image 601/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.87cabcde97c75c9068793716694ef1c5.jpg: 640x640 2 Potholes, 9.6ms
image 602/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.ab51f5f29c2cabd3037a7f562d7c3a48.jpg: 640x640 1 Pothole, 9.3ms
image 603/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.d55ddba83fd6401d17e234092ab2a378.jpg: 640x640 2 Potholes, 11.2ms
image 604/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.18ade0de978aa6c6068402dd80642ccf.jpg: 640x640 2 Potholes, 16.9ms
image 605/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.41ab69bbd0dab6a5f9693448b7cf2cd1.jpg: 640x640 1 Pothole, 13.7ms
image 606/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.8c8d4aebd0f2fb128a231b7b798bd669.jpg: 640x640 1 Pothole, 9.3ms
image 607/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.7d1b62f97cac4df979e6f394117d04d1.jpg: 640x640 10 Potholes, 9.4ms
image 608/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.935c3e2cd37b84d8f63043ca26ebb402.jpg: 640x640 10 Potholes, 10.5ms
image 609/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.98eff15743815f755fd3722f3836c850.jpg: 640x640 10 Potholes, 10.2ms
image 610/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.6f4e81b1ca5d29168033fa69c92c6e24.jpg: 640x640 1 Pothole, 9.1ms
image 611/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.d3fc5f4680f6e28784c2f686b25736bd.jpg: 640x640 1 Pothole, 9.2ms
image 612/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.e6834834f2f355ae4e8d55f881695099.jpg: 640x640 1 Pothole, 9.2ms
image 613/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.20fe5b2f0851cc97b06f4a9d68881330.jpg: 640x640 1 Pothole, 9.4ms
image 614/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.cbd6e701a750684661efc0363bd607aa.jpg: 640x640 1 Pothole, 9.2ms
image 615/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.dcd3fa3c9b81035067fbcb5e4998db50.jpg: 640x640 1 Pothole, 9.6ms
image 616/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.7863aa2444a65c631e8af7c5b9ac8edb.jpg: 640x640 1 Pothole, 9.2ms
image 617/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.d2884b15285690c8542d7391ee04de10.jpg: 640x640 1 Pothole, 14.5ms
image 618/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.d50db2cc8bb871fd0925592de1923193.jpg: 640x640 1 Pothole, 9.2ms
image 619/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.75d85a055ab217101c1e32000dd5826b.jpg: 640x640 3 Potholes, 13.9ms
image 620/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.81a9ac78e24a93573acdd933a0dd3b2a.jpg: 640x640 3 Potholes, 12.7ms
image 621/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.f4fd8956206d712c6b9964dfbfe1567e.jpg: 640x640 3 Potholes, 11.0ms
image 622/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.2c59f391b25c97761914413f17802e9d.jpg: 640x640 6 Potholes, 15.1ms
image 623/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.5a0e8d02278b5430fa7bd514f437f041.jpg: 640x640 6 Potholes, 10.0ms
image 624/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.9d88ef6a6cc16ef8eec9b1688a9d598e.jpg: 640x640 7 Potholes, 9.9ms
image 625/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.7fa7e133ba0c2210d5075b0795e6815d.jpg: 640x640 1 Pothole, 9.8ms
image 626/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.be4b7862a50c7fd0105a6a47ea0f48b9.jpg: 640x640 (no detections), 9.8ms
image 627/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.e602ed35d690902722b26561dd3f9684.jpg: 640x640 (no detections), 13.6ms
image 628/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.2025b0c631dbf0d3277e7d8f95bbf6e8.jpg: 640x640 5 Potholes, 12.5ms
image 629/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.2d3138a80a414a75ab0117408153227b.jpg: 640x640 6 Potholes, 9.4ms
image 630/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.ad992ba43ecdd6892307c96e01da1afa.jpg: 640x640 5 Potholes, 9.9ms
image 631/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.20cbf511ac305a699cd432846cbb264f.jpg: 640x640 1 Pothole, 9.8ms
image 632/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.23e729ce0e5380e419377888f247b0ec.jpg: 640x640 1 Pothole, 9.4ms
image 633/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.6d010af44edfa998adc338038f167ac6.jpg: 640x640 1 Pothole, 11.2ms
image 634/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.65c5742cced68822528a322492f2652d.jpg: 640x640 2 Potholes, 9.4ms
image 635/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.7400b47430ca61631409d5ec433fbf79.jpg: 640x640 2 Potholes, 10.4ms
image 636/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.75ec4611f8576a0f7706a3767986d5fa.jpg: 640x640 2 Potholes, 10.1ms
image 637/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.3fa842cfa55b39d094c6e4be45aaf994.jpg: 640x640 5 Potholes, 9.7ms
image 638/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.4bee9afd2a93c4eec1a251f641521c4c.jpg: 640x640 5 Potholes, 9.7ms
image 639/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.be12246c53c37bcff9d671a1052b23bb.jpg: 640x640 6 Potholes, 9.2ms
image 640/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.0f9bcdab2065fee694fefca6af561329.jpg: 640x640 (no detections), 9.9ms
image 641/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.c09149434e1578a21379b1ec049c97e2.jpg: 640x640 1 Pothole, 14.3ms
image 642/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.dd6b8e67c19a5c53bb6f91b55e593a13.jpg: 640x640 1 Pothole, 9.3ms
image 643/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.00116918149ac51697ae5249644ef144.jpg: 640x640 1 Pothole, 10.0ms
image 644/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.08280c0eeb6772c510479ba1a84a6778.jpg: 640x640 1 Pothole, 10.9ms
image 645/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.30b9fb02402e11d9d73579c9c007e6f1.jpg: 640x640 1 Pothole, 9.7ms
image 646/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.16da87d5105f997141b5538f74203204.jpg: 640x640 1 Pothole, 9.8ms
image 647/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.4599969de001cd1935d28ed812d1dd90.jpg: 640x640 1 Pothole, 10.1ms
image 648/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.753bab7893e8644b71fea76010278698.jpg: 640x640 1 Pothole, 9.5ms
image 649/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.01e2ff81bb8754692afe9b2bb2fda48a.jpg: 640x640 1 Pothole, 9.7ms
image 650/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.a4fb54bd2e21373bc7b34ffadb02d9eb.jpg: 640x640 2 Potholes, 9.7ms
image 651/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.f73e19df2feadf86dbc38f4eb690d204.jpg: 640x640 1 Pothole, 9.3ms
image 652/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.3908b60fc10504b5de5ceb2ba0cddcb1.jpg: 640x640 1 Pothole, 9.8ms
image 653/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.4062413067c04acc387e651210b12921.jpg: 640x640 1 Pothole, 9.9ms
image 654/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.72e4e540e160870c4756c500e80e40b1.jpg: 640x640 1 Pothole, 12.4ms
image 655/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.5d2577e0f9e471d4b9dcfce00a96d034.jpg: 640x640 1 Pothole, 10.1ms
image 656/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.61a63f92522c3558c8dc33ecae183ed2.jpg: 640x640 1 Pothole, 10.4ms
image 657/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.83c80a807ca47eb0192cb129ebc8cb41.jpg: 640x640 1 Pothole, 9.6ms
image 658/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.51b8d15858f724437e1ce83b1f7a76a0.jpg: 640x640 1 Pothole, 10.0ms
image 659/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.6e55ada23b1148608d6daddc7d6d7e27.jpg: 640x640 1 Pothole, 10.8ms
image 660/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.a51a0e1d7624e72d7257934cefd3d410.jpg: 640x640 1 Pothole, 9.9ms
image 661/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.b8083f42dac8ce2a5d303479dc967792.jpg: 640x640 1 Pothole, 9.4ms
image 662/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.be47d8798d6f806389366b2c6e3a3dd1.jpg: 640x640 1 Pothole, 9.9ms
image 663/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.fa63c47cf0aa776aec75efb4df84f724.jpg: 640x640 1 Pothole, 9.6ms
image 664/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.22de640e2560bddb13ff49abfccbc8d6.jpg: 640x640 1 Pothole, 10.3ms
image 665/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.b4762871ab415292cd35f6ee6e2059a5.jpg: 640x640 1 Pothole, 11.2ms
image 666/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.f2cd6b29cbaf9efb1f836b4c78aca3f9.jpg: 640x640 1 Pothole, 9.9ms
image 667/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.8988aa50fb872401bc29ab7830281e22.jpg: 640x640 4 Potholes, 9.6ms
image 668/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.d08231a7b3ed0079786a5cc588acb6a8.jpg: 640x640 4 Potholes, 9.7ms
image 669/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.e5fc6c140371201fb051fc7100769b0b.jpg: 640x640 4 Potholes, 9.9ms
image 670/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.2c871f142112a2de4e78f5730d77bf73.jpg: 640x640 1 Pothole, 10.1ms
image 671/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.682981671ea574a72479e1763164f07b.jpg: 640x640 1 Pothole, 10.2ms
image 672/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.f826102d59ca692fc6a7cd93131a448e.jpg: 640x640 1 Pothole, 9.7ms
image 673/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.24e5bbbd60206e18fc16880bfeaad9aa.jpg: 640x640 5 Potholes, 9.9ms
image 674/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.96fb5070300f4d0838ba9d84df193cb3.jpg: 640x640 6 Potholes, 10.0ms
image 675/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.cdb1fbbb88686147ca6fd7393e9a1053.jpg: 640x640 5 Potholes, 9.9ms
image 676/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.6067035f09c5b1b4a82debfac50b8b68.jpg: 640x640 2 Potholes, 9.8ms
image 677/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.658f94a0e7d008ff38e85a627d6f699e.jpg: 640x640 1 Pothole, 12.6ms
image 678/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.8d1e38d4c07d51717c500ae1145d7108.jpg: 640x640 1 Pothole, 9.0ms
image 679/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.79ea02211ed732335af4650b0977b9ad.jpg: 640x640 2 Potholes, 8.9ms
image 680/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.875df442d5750a19dce18e532e06b8fe.jpg: 640x640 2 Potholes, 10.0ms
image 681/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.f2555c00b7ca574dd2f6b119f2849651.jpg: 640x640 2 Potholes, 10.2ms
image 682/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.02b3ed7783bfa794dcb56d483821c20c.jpg: 640x640 5 Potholes, 10.6ms
image 683/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.a64446b223ce0bba88626d3b9688cb5f.jpg: 640x640 6 Potholes, 15.0ms
image 684/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.c5fc2aff67696bb00ec93f0e00d6b41d.jpg: 640x640 5 Potholes, 9.5ms
image 685/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-86-_jpg.rf.6ba43a8fea8b523c5647b5148ccc4c48.jpg: 640x640 1 Pothole, 9.9ms
image 686/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-86-_jpg.rf.c7c369033df047926786fd0bbc131cf5.jpg: 640x640 1 Pothole, 9.3ms
image 687/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-86-_jpg.rf.fe15af9f424efc111e4bab1ead9b76cc.jpg: 640x640 1 Pothole, 10.1ms
image 688/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-87-_jpg.rf.071c1cfadf7d9959341091d7c27f0caa.jpg: 640x640 5 Potholes, 10.1ms
image 689/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-87-_jpg.rf.9c686985ca1aaf482818536bad3a52d2.jpg: 640x640 5 Potholes, 9.1ms
image 690/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-87-_jpg.rf.f695dc4e18d8786274de900672c1e629.jpg: 640x640 4 Potholes, 9.3ms
image 691/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-89-_jpg.rf.280b8654e1d942e9843333a4a630a473.jpg: 640x640 8 Potholes, 9.5ms
image 692/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-89-_jpg.rf.88d2db98329fc9ad290d1f559d3c8c76.jpg: 640x640 8 Potholes, 8.7ms
image 693/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-89-_jpg.rf.f60ba1af20cc526575b9ddab3e79052d.jpg: 640x640 7 Potholes, 9.2ms
image 694/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-9-_jpg.rf.06f81aab8edc8a1beb3269f379c8e4a8.jpg: 640x640 7 Potholes, 9.3ms
image 695/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-9-_jpg.rf.10d9db0c8fac4eb5b01de9fc71dd19da.jpg: 640x640 8 Potholes, 15.0ms
image 696/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-9-_jpg.rf.62204b022d0e43f1804769f4fc142c28.jpg: 640x640 9 Potholes, 10.2ms
image 697/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-90-_jpg.rf.240ef6f5fe43b76b41bda46a16cb5718.jpg: 640x640 1 Pothole, 9.5ms
image 698/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-90-_jpg.rf.9b8c41e2268c9abdc95c18b3567fb764.jpg: 640x640 1 Pothole, 10.0ms
image 699/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-90-_jpg.rf.f684f3079bfb74c1078e8f8dc7e6fd35.jpg: 640x640 1 Pothole, 9.9ms
image 700/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-91-_jpg.rf.d4d38cce067db39408794242a91f0efa.jpg: 640x640 3 Potholes, 9.1ms
image 701/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-91-_jpg.rf.d541de11cd8503ce68f73abd1fb02717.jpg: 640x640 3 Potholes, 8.7ms
image 702/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-91-_jpg.rf.fdcc03fa51403644168dfca373c9ee0c.jpg: 640x640 2 Potholes, 8.8ms
image 703/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-92-_jpg.rf.453e3b0d19f45cc3adda8b6c2fd35f78.jpg: 640x640 2 Potholes, 9.8ms
image 704/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-92-_jpg.rf.495b1e2e681aaf8bd9ec84f29044ff68.jpg: 640x640 2 Potholes, 9.1ms
image 705/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-92-_jpg.rf.f3247194c884aec0a806958acbda7b38.jpg: 640x640 3 Potholes, 8.9ms
image 706/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-93-_jpg.rf.13ed0023300da63a2f33a803df745530.jpg: 640x640 4 Potholes, 8.8ms
image 707/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-93-_jpg.rf.7a97c10314fb3e87620c30001a1ebda8.jpg: 640x640 4 Potholes, 9.0ms
image 708/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-93-_jpg.rf.d1fd0f49bc38e1f7395f550a40ffda27.jpg: 640x640 4 Potholes, 8.6ms
image 709/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-94-_jpg.rf.2aabac75e10d9308647adbe3285a5498.jpg: 640x640 1 Pothole, 9.1ms
image 710/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-94-_jpg.rf.385cffc613c080827eaa7d1176be5ae3.jpg: 640x640 1 Pothole, 9.0ms
image 711/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-94-_jpg.rf.ba3925642e2ccb4869665efacd0c7649.jpg: 640x640 1 Pothole, 9.4ms
image 712/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-96-_jpg.rf.24d21cef4cfb4d0f7bd6bcc6bc047d4c.jpg: 640x640 1 Pothole, 12.1ms
image 713/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-96-_jpg.rf.462bc937bdab51c156a191ebd1cfc9c2.jpg: 640x640 3 Potholes, 9.2ms
image 714/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-96-_jpg.rf.de1c39ae1a6f184297eac1814e66ca80.jpg: 640x640 1 Pothole, 8.9ms
image 715/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-97-_jpg.rf.405aad85024f81d93922f28864ca1554.jpg: 640x640 2 Potholes, 9.1ms
image 716/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-97-_jpg.rf.5fdb2665d8114a571692b42b87a9da50.jpg: 640x640 1 Pothole, 9.0ms
image 717/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-97-_jpg.rf.f126b87cc73c733f34169b87ffbe0a52.jpg: 640x640 1 Pothole, 9.4ms
image 718/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-98-_jpg.rf.87c1a2590b120c4cb812f9702e6bc851.jpg: 640x640 1 Pothole, 9.2ms
image 719/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-98-_jpg.rf.9f186514621bd6868261aefd8bd19a66.jpg: 640x640 2 Potholes, 9.0ms
image 720/720 /mnt/d/workspace/Pothole/dataset/train/images/pic-98-_jpg.rf.b2a2cf125087b692dbc9ea11ae97ddd4.jpg: 640x640 1 Pothole, 9.8ms
Speed: 1.7ms preprocess, 9.7ms inference, 0.5ms postprocess per image at shape (1, 3, 640, 640)
Out[9]:
[ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        ...,
 
        [[53, 53, 53],
         [51, 51, 51],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[55, 55, 55],
         [51, 51, 51],
         [54, 54, 54],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[51, 51, 51],
         [48, 48, 48],
         [50, 50, 50],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.49882cdb272111f43a6656b1494a4918.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.9964447021484375, 'inference': 66.11871719360352, 'postprocess': 1.6574859619140625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.8d95dd1d29760a2634a45cc7fdd84b31.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 4.303455352783203, 'inference': 115.28682708740234, 'postprocess': 1.01470947265625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 26,  21,  18],
         [ 25,  20,  17],
         [ 24,  19,  16],
         ...,
         [113, 109,  91],
         [112, 108,  90],
         [111, 107,  89]],
 
        [[ 24,  19,  16],
         [ 24,  19,  16],
         [ 22,  17,  14],
         ...,
         [112, 108,  90],
         [110, 106,  88],
         [110, 106,  88]],
 
        [[ 25,  20,  17],
         [ 25,  20,  17],
         [ 23,  18,  15],
         ...,
         [113, 108,  93],
         [112, 108,  90],
         [111, 107,  89]],
 
        ...,
 
        [[ 98, 100, 101],
         [ 97,  99, 100],
         [ 96,  98,  99],
         ...,
         [149, 138, 146],
         [149, 138, 146],
         [149, 138, 146]],
 
        [[ 98, 100, 101],
         [ 97,  99, 100],
         [ 96,  98,  99],
         ...,
         [149, 138, 146],
         [149, 138, 146],
         [149, 138, 146]],
 
        [[ 98, 100, 101],
         [ 97,  99, 100],
         [ 96,  98,  99],
         ...,
         [149, 138, 146],
         [149, 138, 146],
         [149, 138, 146]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-1-_jpg.rf.e238c9bf3fe82e8ac55b0014a27fc529.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.8581619262695312, 'inference': 76.68924331665039, 'postprocess': 1.5480518341064453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.1d433d21e11d000b6b498eacb88fe4a9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.1200180053710938, 'inference': 11.296987533569336, 'postprocess': 0.4038810729980469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 13,  14,   4],
         [  2,   3,   0],
         [ 14,  14,   8],
         ...,
         [  1,   1,   1],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[ 13,  14,   4],
         [  2,   3,   0],
         [ 14,  14,   8],
         ...,
         [  2,   2,   2],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[ 10,  11,   2],
         [  2,   3,   0],
         [  8,   8,   2],
         ...,
         [  3,   3,   3],
         [  2,   2,   2],
         [  0,   0,   0]],
 
        ...,
 
        [[173, 197, 203],
         [174, 198, 204],
         [176, 200, 206],
         ...,
         [ 84,  72,  62],
         [159, 147, 137],
         [179, 167, 157]],
 
        [[173, 197, 203],
         [174, 198, 204],
         [176, 200, 206],
         ...,
         [126, 116, 106],
         [176, 165, 157],
         [178, 167, 159]],
 
        [[173, 197, 203],
         [174, 198, 204],
         [176, 200, 206],
         ...,
         [149, 139, 129],
         [180, 169, 161],
         [190, 179, 171]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.500c683a687e403f4cdade4826a84b5b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3263225555419922, 'inference': 6.392717361450195, 'postprocess': 0.36406517028808594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        ...,
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-10-_jpg.rf.5a901c212d899a7dc7dc78be7de892c0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8000602722167969, 'inference': 9.652376174926758, 'postprocess': 0.5240440368652344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[233, 228, 225],
         [218, 213, 210],
         [219, 214, 211],
         ...,
         [ 90,  90,  90],
         [ 79,  79,  79],
         [ 69,  69,  69]],
 
        [[211, 206, 203],
         [211, 206, 203],
         [218, 213, 210],
         ...,
         [ 87,  87,  87],
         [ 81,  81,  81],
         [ 76,  76,  76]],
 
        [[202, 198, 197],
         [205, 201, 200],
         [207, 203, 202],
         ...,
         [ 89,  89,  89],
         [ 87,  87,  87],
         [ 88,  88,  88]],
 
        ...,
 
        [[108, 109, 113],
         [138, 139, 143],
         [122, 123, 127],
         ...,
         [100,  92,  93],
         [105,  97,  98],
         [177, 169, 170]],
 
        [[111, 112, 116],
         [136, 137, 141],
         [126, 127, 131],
         ...,
         [ 91,  83,  84],
         [ 82,  74,  75],
         [151, 143, 144]],
 
        [[101, 102, 106],
         [111, 112, 116],
         [101, 102, 106],
         ...,
         [ 98,  90,  91],
         [ 95,  87,  88],
         [165, 157, 158]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.17047bb032a49c96643c5f2108bb99dd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2145042419433594, 'inference': 6.656408309936523, 'postprocess': 0.3230571746826172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.8c9076ee84698f90f04765f4e794a819.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4896392822265625, 'inference': 7.803678512573242, 'postprocess': 0.6921291351318359},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-100-_jpg.rf.ebc3af260e989e6f9e1e9221b9dff6b0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.316070556640625, 'inference': 6.748199462890625, 'postprocess': 0.3573894500732422},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 9,  0,  3],
         [ 9,  0,  3],
         [ 9,  0,  3],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 5,  0,  3],
         [ 4,  0,  3],
         [ 5,  0,  3],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  1,  2],
         [ 0,  1,  2],
         [ 0,  0,  1],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[40, 42, 42],
         [49, 51, 51],
         [67, 69, 69],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[25, 30, 29],
         [45, 50, 49],
         [59, 64, 63],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[47, 53, 52],
         [41, 47, 46],
         [28, 33, 32],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.1e32a49f89a38974ded11bba8dd3e56b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.283884048461914, 'inference': 6.549596786499023, 'postprocess': 0.3628730773925781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[157, 108,  76],
         [158, 109,  77],
         [162, 109,  76],
         ...,
         [162, 107,  68],
         [162, 107,  68],
         [162, 107,  68]],
 
        [[157, 108,  76],
         [157, 108,  76],
         [159, 108,  75],
         ...,
         [162, 107,  68],
         [162, 107,  68],
         [162, 107,  68]],
 
        [[157, 108,  76],
         [157, 108,  76],
         [158, 107,  74],
         ...,
         [162, 107,  68],
         [162, 107,  68],
         [162, 107,  68]],
 
        ...,
 
        [[ 83,  85,  85],
         [ 80,  82,  82],
         [ 84,  86,  86],
         ...,
         [ 62,  62,  62],
         [ 76,  76,  76],
         [124, 124, 124]],
 
        [[111, 113, 113],
         [ 88,  90,  90],
         [ 83,  85,  85],
         ...,
         [ 46,  46,  46],
         [ 52,  52,  52],
         [ 83,  83,  83]],
 
        [[102, 104, 104],
         [ 69,  71,  71],
         [ 60,  62,  62],
         ...,
         [ 66,  66,  66],
         [ 63,  63,  63],
         [ 65,  65,  65]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.4abe48a3d2a5e556908bf4286446e5ce.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.64031982421875, 'inference': 6.839513778686523, 'postprocess': 0.331878662109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[72, 72, 72],
         [72, 72, 72],
         [72, 72, 72],
         ...,
         [72, 72, 72],
         [72, 72, 72],
         [72, 72, 72]],
 
        [[72, 72, 72],
         [72, 72, 72],
         [72, 72, 72],
         ...,
         [72, 72, 72],
         [72, 72, 72],
         [72, 72, 72]],
 
        [[72, 72, 72],
         [72, 72, 72],
         [72, 72, 72],
         ...,
         [72, 72, 72],
         [72, 72, 72],
         [72, 72, 72]],
 
        ...,
 
        [[72, 72, 72],
         [72, 72, 72],
         [72, 72, 72],
         ...,
         [72, 72, 72],
         [72, 72, 72],
         [72, 72, 72]],
 
        [[72, 72, 72],
         [72, 72, 72],
         [72, 72, 72],
         ...,
         [72, 72, 72],
         [72, 72, 72],
         [72, 72, 72]],
 
        [[72, 72, 72],
         [72, 72, 72],
         [72, 72, 72],
         ...,
         [72, 72, 72],
         [72, 72, 72],
         [72, 72, 72]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-101-_jpg.rf.8380b58f6540ec91db66934b342f7f9e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.337289810180664, 'inference': 7.301092147827148, 'postprocess': 0.40602684020996094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 0, 0],
         [4, 0, 0],
         [4, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 0, 0],
         [4, 0, 0],
         [4, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 0],
         [2, 0, 0],
         [2, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.bb6db5bdb59d1a6af15b0a0b565a3cdb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5230178833007812, 'inference': 6.888628005981445, 'postprocess': 0.324249267578125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.cd0b0b3a64e3a11005884c98c1f6c3aa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7535686492919922, 'inference': 8.517026901245117, 'postprocess': 0.41937828063964844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[141, 146, 149],
         [140, 145, 148],
         [139, 144, 147],
         ...,
         [192, 194, 194],
         [190, 192, 192],
         [187, 189, 189]],
 
        [[141, 146, 149],
         [140, 145, 148],
         [139, 144, 147],
         ...,
         [192, 194, 194],
         [191, 193, 193],
         [188, 190, 190]],
 
        [[141, 146, 149],
         [139, 144, 147],
         [138, 143, 146],
         ...,
         [192, 194, 194],
         [191, 193, 193],
         [189, 191, 191]],
 
        ...,
 
        [[136, 135, 137],
         [132, 131, 133],
         [137, 136, 138],
         ...,
         [ 76,  76,  76],
         [ 77,  77,  77],
         [ 78,  78,  78]],
 
        [[144, 143, 145],
         [140, 139, 141],
         [144, 143, 145],
         ...,
         [ 74,  74,  74],
         [ 76,  76,  76],
         [ 77,  77,  77]],
 
        [[136, 135, 137],
         [135, 134, 136],
         [140, 139, 141],
         ...,
         [ 74,  74,  74],
         [ 76,  76,  76],
         [ 77,  77,  77]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-102-_jpg.rf.df35bf045672f19a05f84a8c365dab3a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2557506561279297, 'inference': 6.972074508666992, 'postprocess': 0.3528594970703125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.26017e20e92320bcde575710389353b1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.3391246795654297, 'inference': 7.349729537963867, 'postprocess': 0.4527568817138672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[187, 185, 184],
         [187, 185, 184],
         [189, 187, 186],
         ...,
         [163, 161, 160],
         [163, 161, 160],
         [164, 162, 161]],
 
        [[189, 187, 186],
         [188, 186, 185],
         [187, 185, 184],
         ...,
         [162, 160, 159],
         [162, 160, 159],
         [163, 161, 160]],
 
        [[190, 188, 187],
         [189, 187, 186],
         [187, 185, 184],
         ...,
         [162, 160, 159],
         [162, 160, 159],
         [162, 160, 159]],
 
        ...,
 
        [[111, 109, 108],
         [122, 120, 119],
         [133, 131, 130],
         ...,
         [152, 153, 151],
         [146, 147, 145],
         [129, 130, 128]],
 
        [[126, 124, 123],
         [120, 118, 117],
         [142, 140, 139],
         ...,
         [143, 144, 142],
         [151, 152, 150],
         [150, 151, 149]],
 
        [[160, 158, 157],
         [129, 127, 126],
         [146, 144, 143],
         ...,
         [137, 138, 136],
         [160, 161, 159],
         [171, 172, 170]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.4fa35472ae606aca56d49966dc91b5b6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6665458679199219, 'inference': 7.508993148803711, 'postprocess': 0.3764629364013672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        ...,
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-103-_jpg.rf.e204fd0f4f80094ec52c54c31ab06db0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7008781433105469, 'inference': 7.694482803344727, 'postprocess': 0.7486343383789062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[116, 143, 123],
         [113, 141, 121],
         [104, 135, 114],
         ...,
         [ 83,  69,  63],
         [ 90,  78,  72],
         [ 80,  68,  62]],
 
        [[119, 146, 126],
         [116, 144, 124],
         [109, 140, 119],
         ...,
         [ 84,  70,  64],
         [ 89,  77,  71],
         [ 79,  67,  61]],
 
        [[121, 149, 129],
         [118, 146, 126],
         [112, 143, 122],
         ...,
         [ 84,  70,  64],
         [ 87,  75,  69],
         [ 77,  65,  59]],
 
        ...,
 
        [[ 95,  80,  64],
         [ 92,  77,  61],
         [ 84,  70,  52],
         ...,
         [ 93,  74,  61],
         [144, 125, 112],
         [154, 137, 124]],
 
        [[ 96,  81,  65],
         [ 93,  78,  62],
         [ 90,  76,  58],
         ...,
         [ 65,  46,  33],
         [121, 102,  89],
         [138, 121, 108]],
 
        [[ 90,  75,  59],
         [ 93,  78,  62],
         [ 99,  85,  67],
         ...,
         [ 48,  29,  16],
         [103,  84,  71],
         [124, 107,  94]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.117ec7cfcc77d6e6f80130934b1d5aa1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4150142669677734, 'inference': 9.409427642822266, 'postprocess': 0.5176067352294922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.e4efc52e048da0b6918c135b1bd39962.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6126632690429688, 'inference': 7.244348526000977, 'postprocess': 0.39076805114746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        ...,
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-104-_jpg.rf.f986cb78d75fc164de95ac33c56d9474.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6567707061767578, 'inference': 7.757902145385742, 'postprocess': 0.9431838989257812},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 1, 0],
         [0, 1, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 1, 0],
         [0, 1, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 1, 0],
         [0, 1, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.0b52d3fe11f0b249a5eb2f14a8f0a14f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4414787292480469, 'inference': 8.835792541503906, 'postprocess': 0.39577484130859375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[235, 177, 118],
         [235, 177, 118],
         [235, 177, 118],
         ...,
         [250, 197, 134],
         [253, 201, 135],
         [247, 195, 129]],
 
        [[235, 177, 118],
         [235, 177, 118],
         [236, 178, 119],
         ...,
         [231, 182, 120],
         [238, 189, 127],
         [252, 204, 140]],
 
        [[236, 178, 119],
         [236, 178, 119],
         [236, 178, 119],
         ...,
         [230, 185, 128],
         [236, 191, 134],
         [239, 195, 136]],
 
        ...,
 
        [[111, 116, 125],
         [119, 124, 133],
         [129, 134, 143],
         ...,
         [158, 161, 165],
         [155, 158, 162],
         [163, 166, 170]],
 
        [[108, 113, 122],
         [118, 123, 132],
         [128, 133, 142],
         ...,
         [152, 155, 159],
         [145, 148, 152],
         [151, 154, 158]],
 
        [[110, 115, 124],
         [119, 124, 133],
         [129, 134, 143],
         ...,
         [142, 145, 149],
         [135, 138, 142],
         [124, 127, 131]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.0ce0939aec2bb2ab235addf64d130914.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8193721771240234, 'inference': 8.246421813964844, 'postprocess': 0.7264614105224609},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        ...,
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-105-_jpg.rf.859bee21c8abeda9bc4ef41da6d2d0bf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3570785522460938, 'inference': 9.214401245117188, 'postprocess': 0.5540847778320312},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 50,  58,  51],
         [ 61,  69,  62],
         [ 17,  25,  18],
         ...,
         [156, 161, 160],
         [159, 164, 163],
         [149, 154, 153]],
 
        [[ 29,  37,  30],
         [ 51,  59,  52],
         [ 34,  42,  35],
         ...,
         [147, 152, 151],
         [162, 167, 166],
         [163, 168, 167]],
 
        [[ 17,  25,  18],
         [ 31,  39,  32],
         [ 34,  42,  35],
         ...,
         [148, 153, 152],
         [170, 175, 174],
         [177, 182, 181]],
 
        ...,
 
        [[ 65,  79,  85],
         [ 70,  84,  90],
         [ 72,  86,  92],
         ...,
         [ 57,  61,  56],
         [ 60,  66,  61],
         [ 64,  70,  65]],
 
        [[ 62,  76,  82],
         [ 69,  83,  89],
         [ 73,  87,  93],
         ...,
         [ 62,  66,  61],
         [ 63,  69,  64],
         [ 66,  72,  67]],
 
        [[ 64,  78,  84],
         [ 72,  86,  92],
         [ 78,  92,  98],
         ...,
         [ 65,  69,  64],
         [ 63,  69,  64],
         [ 64,  70,  65]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.0cbfb7193cdb49723d65f538678e22d2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6345977783203125, 'inference': 8.930444717407227, 'postprocess': 0.8847713470458984},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [29, 71, 70],
         [26, 70, 71],
         [48, 94, 95]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [32, 72, 71],
         [23, 67, 68],
         [35, 79, 80]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [32, 70, 70],
         [21, 60, 62],
         [15, 56, 58]],
 
        ...,
 
        [[ 0,  0,  1],
         [ 0,  0,  1],
         [ 0,  0,  1],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  3],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  3],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.ac62ec1fab28b4344978edf35e9d2f3b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6827583312988281, 'inference': 8.84556770324707, 'postprocess': 0.7903575897216797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-106-_jpg.rf.e4becd5b84615a7550986c2835dc285e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4023780822753906, 'inference': 6.78706169128418, 'postprocess': 0.4184246063232422},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[172, 158, 160],
         [174, 160, 162],
         [177, 163, 165],
         ...,
         [163, 150, 152],
         [171, 158, 160],
         [134, 121, 123]],
 
        [[174, 160, 162],
         [175, 161, 163],
         [176, 162, 164],
         ...,
         [151, 138, 140],
         [159, 146, 148],
         [121, 108, 110]],
 
        [[177, 163, 165],
         [176, 162, 164],
         [175, 161, 163],
         ...,
         [145, 132, 134],
         [151, 138, 140],
         [113, 100, 102]],
 
        ...,
 
        [[141, 127, 138],
         [147, 133, 144],
         [154, 140, 151],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[149, 135, 146],
         [153, 139, 150],
         [157, 143, 154],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[116, 102, 113],
         [119, 105, 116],
         [118, 104, 115],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.03fc77860b4af0df70c5ab46db783441.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5411376953125, 'inference': 7.500410079956055, 'postprocess': 0.34928321838378906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[215, 205, 205],
         [215, 205, 205],
         [216, 206, 206],
         ...,
         [218, 207, 209],
         [216, 205, 207],
         [213, 202, 204]],
 
        [[216, 206, 206],
         [215, 205, 205],
         [214, 204, 204],
         ...,
         [215, 204, 206],
         [215, 204, 206],
         [213, 202, 204]],
 
        [[217, 207, 207],
         [215, 205, 205],
         [212, 202, 202],
         ...,
         [211, 200, 202],
         [212, 201, 203],
         [212, 201, 203]],
 
        ...,
 
        [[169, 162, 167],
         [169, 162, 167],
         [168, 161, 166],
         ...,
         [167, 160, 163],
         [172, 165, 168],
         [174, 167, 170]],
 
        [[179, 172, 177],
         [178, 171, 176],
         [176, 169, 174],
         ...,
         [160, 153, 156],
         [167, 160, 163],
         [169, 162, 165]],
 
        [[182, 175, 180],
         [181, 174, 179],
         [178, 171, 176],
         ...,
         [160, 153, 156],
         [166, 159, 162],
         [169, 162, 165]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.3553f8919ce95633136ebe837864a734.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3232231140136719, 'inference': 6.831169128417969, 'postprocess': 0.33473968505859375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-107-_jpg.rf.f0ad7fbe0407cb85527525e503913079.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.512289047241211, 'inference': 7.086753845214844, 'postprocess': 0.652313232421875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.0a11aa9e03c7bce050328b7bb2341bad.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3699531555175781, 'inference': 7.265329360961914, 'postprocess': 0.36525726318359375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.1dee3ebe35fda326931fb1a1a3162f56.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5139579772949219, 'inference': 7.017374038696289, 'postprocess': 0.4868507385253906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[117, 126, 140],
         [ 79,  88, 101],
         [ 88,  97, 110],
         ...,
         [ 25,  31,  38],
         [  1,   3,  11],
         [ 13,  15,  23]],
 
        [[121, 130, 144],
         [ 92, 101, 114],
         [ 91, 100, 113],
         ...,
         [ 46,  49,  57],
         [ 38,  40,  48],
         [ 48,  50,  58]],
 
        [[109, 118, 132],
         [102, 111, 124],
         [ 98, 107, 120],
         ...,
         [ 67,  68,  78],
         [ 66,  67,  77],
         [ 69,  70,  80]],
 
        ...,
 
        [[140, 145, 144],
         [110, 115, 114],
         [107, 110, 108],
         ...,
         [130, 135, 138],
         [108, 111, 115],
         [ 54,  57,  61]],
 
        [[142, 147, 146],
         [124, 129, 128],
         [110, 113, 111],
         ...,
         [109, 114, 117],
         [115, 118, 122],
         [ 92,  96,  97]],
 
        [[151, 156, 155],
         [128, 133, 132],
         [127, 130, 128],
         ...,
         [ 90,  95,  98],
         [130, 134, 135],
         [140, 144, 145]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-108-_jpg.rf.539074c8d5134b846ed4b34e66362766.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6303062438964844, 'inference': 7.561922073364258, 'postprocess': 0.3561973571777344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        ...,
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.04274b3be06ee972e8900a1875f45611.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3496875762939453, 'inference': 6.8073272705078125, 'postprocess': 0.35953521728515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        ...,
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.b84c3f664bd7ae818c9af8fb6bc95a9c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5149116516113281, 'inference': 7.158517837524414, 'postprocess': 0.3592967987060547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 17,  50,  35],
         [ 28,  61,  46],
         [ 40,  73,  59],
         ...,
         [100,  97,  93],
         [ 95,  92,  88],
         [ 93,  90,  86]],
 
        [[ 19,  52,  37],
         [ 30,  63,  48],
         [ 41,  74,  60],
         ...,
         [ 99,  96,  92],
         [ 95,  92,  88],
         [ 93,  90,  86]],
 
        [[ 22,  52,  39],
         [ 33,  63,  50],
         [ 42,  74,  63],
         ...,
         [102,  99,  95],
         [ 98,  95,  91],
         [ 97,  94,  90]],
 
        ...,
 
        [[ 40,  41,  39],
         [ 43,  44,  42],
         [ 46,  47,  45],
         ...,
         [ 55,  54,  50],
         [ 59,  58,  54],
         [ 62,  61,  57]],
 
        [[ 38,  39,  37],
         [ 42,  43,  41],
         [ 47,  48,  46],
         ...,
         [ 56,  55,  51],
         [ 61,  60,  56],
         [ 65,  64,  60]],
 
        [[ 36,  37,  35],
         [ 41,  42,  40],
         [ 47,  48,  46],
         ...,
         [ 57,  56,  52],
         [ 62,  61,  57],
         [ 66,  65,  61]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-109-_jpg.rf.de4b44ded5874999731e65adcf907536.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2698173522949219, 'inference': 6.621599197387695, 'postprocess': 0.37932395935058594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.39503b2272330e0dd57ffe9fc6ed720e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6469955444335938, 'inference': 12.166976928710938, 'postprocess': 0.36907196044921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        ...,
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.489d3c93901c3240d87b78333702d26c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9190311431884766, 'inference': 7.006168365478516, 'postprocess': 0.3478527069091797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[226, 161, 122],
         [226, 161, 122],
         [226, 161, 122],
         ...,
         [  6,  27,  18],
         [ 17,  34,  25],
         [ 32,  49,  40]],
 
        [[226, 161, 122],
         [226, 161, 122],
         [226, 161, 122],
         ...,
         [ 10,  29,  20],
         [ 18,  35,  26],
         [ 35,  52,  43]],
 
        [[226, 161, 122],
         [226, 161, 122],
         [226, 161, 122],
         ...,
         [ 11,  30,  21],
         [ 16,  33,  24],
         [ 34,  51,  42]],
 
        ...,
 
        [[ 46,  47,  45],
         [ 45,  46,  44],
         [ 43,  44,  42],
         ...,
         [ 72,  89,  98],
         [ 73,  90,  99],
         [ 74,  91, 100]],
 
        [[ 49,  50,  48],
         [ 48,  49,  47],
         [ 45,  46,  44],
         ...,
         [ 72,  89,  98],
         [ 73,  90,  99],
         [ 74,  91, 100]],
 
        [[ 51,  52,  50],
         [ 49,  50,  48],
         [ 46,  47,  45],
         ...,
         [ 72,  89,  98],
         [ 73,  90,  99],
         [ 74,  91, 100]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-11-_jpg.rf.7bf3ce1997b0a5d878ad6fabe1e5772a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4891624450683594, 'inference': 7.053375244140625, 'postprocess': 0.3418922424316406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        ...,
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.c61b825409e38c7651bca32e1d9680b5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7244815826416016, 'inference': 7.503271102905273, 'postprocess': 0.9012222290039062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [ 99,  99, 115],
         [103, 100, 116],
         [104,  99, 114]],
 
        [[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [102, 101, 117],
         [106, 101, 116],
         [105, 101, 113]],
 
        [[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [109, 106, 121],
         [113, 106, 119],
         [112, 106, 117]],
 
        ...,
 
        [[160, 143, 140],
         [177, 160, 157],
         [196, 179, 176],
         ...,
         [112,  98, 100],
         [125, 106, 109],
         [126, 107, 110]],
 
        [[148, 131, 128],
         [160, 143, 140],
         [181, 164, 161],
         ...,
         [119, 105, 107],
         [125, 106, 109],
         [119, 100, 103]],
 
        [[172, 155, 152],
         [169, 152, 149],
         [182, 165, 162],
         ...,
         [116, 102, 104],
         [117,  98, 101],
         [108,  89,  92]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.c9150ba543315705a5bb08654144ccf9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3108253479003906, 'inference': 6.99162483215332, 'postprocess': 0.3509521484375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        ...,
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-110-_jpg.rf.ddb9b30f00ca7dfad4235fcd67610a9b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5900135040283203, 'inference': 6.853342056274414, 'postprocess': 0.35762786865234375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   3],
         [  0,   0,   3],
         [  0,   0,   1],
         ...,
         [  0,   4,   0],
         [  0,   4,   0],
         [  0,   4,   0]],
 
        [[  2,   3,   7],
         [  1,   3,   4],
         [  0,   2,   3],
         ...,
         [  0,   3,   0],
         [  0,   3,   0],
         [  0,   3,   0]],
 
        [[  0,   0,   1],
         [  0,   0,   1],
         [  0,   0,   1],
         ...,
         [  0,   1,   0],
         [  0,   1,   0],
         [  0,   1,   0]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [119, 123, 124],
         [109, 113, 114],
         [109, 113, 114]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [117, 121, 122],
         [105, 109, 110],
         [103, 107, 108]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [116, 120, 121],
         [104, 108, 109],
         [102, 106, 107]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.39065e4e7f12e6c9d4e829f9df001cec.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.67083740234375, 'inference': 8.593559265136719, 'postprocess': 0.45752525329589844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 36,  36,  52],
         [ 37,  37,  53],
         [ 38,  37,  57],
         ...,
         [203, 201, 193],
         [203, 201, 193],
         [203, 201, 193]],
 
        [[ 38,  38,  54],
         [ 38,  38,  54],
         [ 41,  41,  59],
         ...,
         [205, 203, 195],
         [205, 203, 195],
         [205, 203, 195]],
 
        [[ 36,  39,  53],
         [ 37,  40,  54],
         [ 39,  42,  57],
         ...,
         [207, 205, 197],
         [207, 205, 197],
         [207, 205, 197]],
 
        ...,
 
        [[ 93,  98,  97],
         [ 89,  94,  93],
         [ 91,  96,  95],
         ...,
         [ 87,  89,  90],
         [ 91,  93,  94],
         [ 97,  99, 100]],
 
        [[ 95, 100,  99],
         [ 95, 100,  99],
         [100, 105, 104],
         ...,
         [ 97,  99, 100],
         [ 97,  99, 100],
         [ 98, 100, 101]],
 
        [[109, 114, 113],
         [111, 116, 115],
         [119, 124, 123],
         ...,
         [107, 109, 110],
         [101, 103, 104],
         [ 99, 101, 102]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.3a38a17ad93dbe166ddcc54aae67d206.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.314401626586914, 'inference': 6.92439079284668, 'postprocess': 0.39505958557128906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-111-_jpg.rf.748bde6c84a85700fe3e4a8ad8e5c83c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7926692962646484, 'inference': 9.426355361938477, 'postprocess': 0.4341602325439453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 86,  76,  88],
         [ 85,  75,  87],
         [ 83,  74,  84],
         ...,
         [  4,   0,   3],
         [  4,   0,   3],
         [  4,   0,   3]],
 
        [[ 83,  73,  85],
         [ 84,  75,  85],
         [ 83,  74,  84],
         ...,
         [  2,   0,   3],
         [  2,   0,   3],
         [  2,   0,   3]],
 
        [[ 93,  84,  94],
         [ 94,  86,  93],
         [ 94,  86,  93],
         ...,
         [  0,   0,   1],
         [  0,   0,   1],
         [  0,   0,   1]],
 
        ...,
 
        [[  0,   0,   3],
         [  0,   0,   4],
         [  0,   0,   6],
         ...,
         [144, 155, 169],
         [124, 133, 146],
         [ 78,  87, 100]],
 
        [[  0,   0,   4],
         [  0,   0,   4],
         [  0,   0,   8],
         ...,
         [135, 144, 158],
         [103, 111, 124],
         [ 49,  57,  70]],
 
        [[  2,   0,   6],
         [  0,   0,   4],
         [  2,   1,  11],
         ...,
         [110, 119, 133],
         [ 97, 105, 118],
         [ 64,  72,  85]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.3d443fe242b14e97a21264faecffde8c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9252300262451172, 'inference': 12.227058410644531, 'postprocess': 0.7569789886474609},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 69,  67,  79],
         [ 71,  69,  81],
         [ 74,  72,  84],
         ...,
         [ 25,  46,  47],
         [ 30,  54,  54],
         [ 29,  55,  55]],
 
        [[ 68,  66,  78],
         [ 70,  68,  80],
         [ 72,  70,  82],
         ...,
         [ 24,  44,  45],
         [ 27,  51,  51],
         [ 25,  51,  51]],
 
        [[ 68,  66,  78],
         [ 70,  68,  80],
         [ 71,  69,  81],
         ...,
         [ 23,  41,  42],
         [ 25,  46,  47],
         [ 22,  46,  46]],
 
        ...,
 
        [[ 32,  26,  43],
         [ 76,  75,  91],
         [110, 113, 127],
         ...,
         [131, 148, 169],
         [132, 148, 171],
         [112, 128, 151]],
 
        [[ 34,  31,  47],
         [ 50,  50,  66],
         [ 61,  67,  80],
         ...,
         [105, 119, 142],
         [134, 147, 173],
         [134, 147, 173]],
 
        [[ 39,  38,  54],
         [ 42,  42,  58],
         [ 65,  73,  86],
         ...,
         [ 69,  83, 106],
         [119, 131, 159],
         [137, 149, 177]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.565a4282cf6d23cbb37f3ee73567ec2b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7139911651611328, 'inference': 8.540153503417969, 'postprocess': 0.36907196044921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-112-_jpg.rf.a0296021fd4252e341077743b0990cb8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3017654418945312, 'inference': 6.6070556640625, 'postprocess': 0.3838539123535156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.59ab5bd4ba9f0202cd15f82e7109fc77.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4815330505371094, 'inference': 6.908655166625977, 'postprocess': 1.2557506561279297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.b8d031ce65af24e0b5e80cab8723335b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3480186462402344, 'inference': 8.653402328491211, 'postprocess': 0.3421306610107422},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 76,  66,  72],
         [ 77,  67,  73],
         [ 82,  72,  78],
         ...,
         [172, 136, 118],
         [184, 159, 139],
         [174, 153, 131]],
 
        [[ 81,  71,  77],
         [ 81,  71,  77],
         [ 86,  76,  82],
         ...,
         [163, 127, 109],
         [171, 147, 125],
         [182, 161, 139]],
 
        [[ 82,  73,  76],
         [ 79,  70,  73],
         [ 83,  74,  77],
         ...,
         [176, 140, 122],
         [170, 143, 122],
         [149, 127, 102]],
 
        ...,
 
        [[113, 108, 109],
         [155, 150, 151],
         [130, 125, 126],
         ...,
         [118, 112, 113],
         [142, 136, 137],
         [132, 126, 127]],
 
        [[125, 120, 121],
         [158, 153, 154],
         [112, 107, 108],
         ...,
         [133, 127, 128],
         [149, 143, 144],
         [127, 121, 122]],
 
        [[ 98,  93,  94],
         [122, 117, 118],
         [ 85,  80,  81],
         ...,
         [159, 153, 154],
         [167, 161, 162],
         [136, 130, 131]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-113-_jpg.rf.dfebb14b79daa214f3f87995192a85ae.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4405250549316406, 'inference': 8.154153823852539, 'postprocess': 0.5130767822265625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        ...,
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.1da712be935af009c0a9e04f0276f225.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4297962188720703, 'inference': 7.063627243041992, 'postprocess': 0.3612041473388672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.2ac2c551c23ad08dd5599f320c8dd310.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3113021850585938, 'inference': 7.422685623168945, 'postprocess': 0.34809112548828125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[209, 205, 204],
         [210, 206, 205],
         [195, 191, 190],
         ...,
         [110, 101,  97],
         [107,  98,  94],
         [107,  98,  94]],
 
        [[188, 184, 183],
         [199, 195, 194],
         [193, 189, 188],
         ...,
         [114, 105, 101],
         [110, 101,  97],
         [109, 100,  96]],
 
        [[153, 149, 148],
         [171, 167, 166],
         [177, 173, 172],
         ...,
         [120, 111, 107],
         [115, 106, 102],
         [112, 103,  99]],
 
        ...,
 
        [[ 73,  75,  76],
         [ 76,  78,  79],
         [ 86,  88,  89],
         ...,
         [ 95,  90,  91],
         [ 88,  82,  83],
         [ 85,  79,  80]],
 
        [[ 75,  77,  78],
         [ 80,  82,  83],
         [ 90,  92,  93],
         ...,
         [107, 102, 103],
         [ 94,  88,  89],
         [ 84,  78,  79]],
 
        [[ 80,  82,  83],
         [ 84,  86,  87],
         [ 91,  93,  94],
         ...,
         [113, 108, 109],
         [ 95,  89,  90],
         [ 82,  76,  77]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-115-_jpg.rf.a808c9e7b2121bd93dbc59332a6d12cb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5411376953125, 'inference': 7.22813606262207, 'postprocess': 0.35119056701660156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95],
         ...,
         [ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95]],
 
        [[ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95],
         ...,
         [ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95]],
 
        [[ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95],
         ...,
         [ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95]],
 
        ...,
 
        [[ 84,  86,  87],
         [ 97,  99, 100],
         [107, 109, 110],
         ...,
         [ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95]],
 
        [[ 94,  96,  97],
         [106, 108, 109],
         [104, 106, 107],
         ...,
         [ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95]],
 
        [[ 89,  91,  92],
         [ 96,  98,  99],
         [ 80,  82,  83],
         ...,
         [ 95,  95,  95],
         [ 95,  95,  95],
         [ 95,  95,  95]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.23537a5a480ec24a62b83163a80c4db3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2853145599365234, 'inference': 7.250070571899414, 'postprocess': 0.5362033843994141},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[30, 30, 30],
         [30, 30, 30],
         [30, 30, 30],
         ...,
         [30, 30, 30],
         [30, 30, 30],
         [30, 30, 30]],
 
        [[30, 30, 30],
         [30, 30, 30],
         [30, 30, 30],
         ...,
         [30, 30, 30],
         [30, 30, 30],
         [30, 30, 30]],
 
        [[30, 30, 30],
         [30, 30, 30],
         [30, 30, 30],
         ...,
         [30, 30, 30],
         [30, 30, 30],
         [30, 30, 30]],
 
        ...,
 
        [[30, 30, 30],
         [30, 30, 30],
         [30, 30, 30],
         ...,
         [30, 30, 30],
         [30, 30, 30],
         [30, 30, 30]],
 
        [[30, 30, 30],
         [30, 30, 30],
         [30, 30, 30],
         ...,
         [30, 30, 30],
         [30, 30, 30],
         [30, 30, 30]],
 
        [[30, 30, 30],
         [30, 30, 30],
         [30, 30, 30],
         ...,
         [30, 30, 30],
         [30, 30, 30],
         [30, 30, 30]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.8e6e071e8f8e9e9d6f84a1f35766ebf0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6872882843017578, 'inference': 9.022951126098633, 'postprocess': 0.3669261932373047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 60,  74,  96],
         [ 61,  75,  97],
         [ 59,  76,  95],
         ...,
         [ 35,  39,  34],
         [ 38,  42,  36],
         [ 17,  21,  15]],
 
        [[ 60,  74,  96],
         [ 61,  75,  97],
         [ 59,  76,  95],
         ...,
         [ 33,  37,  32],
         [ 30,  34,  28],
         [ 19,  23,  17]],
 
        [[ 60,  74,  96],
         [ 60,  74,  96],
         [ 59,  76,  95],
         ...,
         [ 28,  32,  27],
         [ 20,  24,  18],
         [ 20,  24,  18]],
 
        ...,
 
        [[130, 132, 133],
         [128, 130, 131],
         [120, 122, 123],
         ...,
         [ 93,  93,  93],
         [ 89,  89,  89],
         [ 88,  88,  88]],
 
        [[132, 134, 135],
         [128, 130, 131],
         [117, 119, 120],
         ...,
         [ 92,  92,  92],
         [ 87,  87,  87],
         [ 87,  87,  87]],
 
        [[136, 138, 139],
         [131, 133, 134],
         [119, 121, 122],
         ...,
         [ 89,  89,  89],
         [ 84,  84,  84],
         [ 87,  87,  87]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-117-_jpg.rf.a5e887bf3c2428e83a81dc48e4f80b0e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8115043640136719, 'inference': 7.653236389160156, 'postprocess': 0.3857612609863281},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        ...,
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.8beeeda1ce5f8d0cf75e8634f45e6e7e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3506412506103516, 'inference': 7.554769515991211, 'postprocess': 0.32973289489746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.aa2953e739d235b2eddafdea4a1dab6e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3866424560546875, 'inference': 6.887197494506836, 'postprocess': 0.3273487091064453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 95,  69, 159],
         [ 93,  67, 157],
         [ 95,  67, 156],
         ...,
         [100, 119, 127],
         [104, 117, 139],
         [105, 116, 144]],
 
        [[ 96,  70, 160],
         [ 93,  67, 157],
         [ 95,  67, 156],
         ...,
         [103, 120, 129],
         [109, 120, 142],
         [111, 119, 148]],
 
        [[ 97,  72, 160],
         [ 94,  69, 157],
         [ 96,  68, 157],
         ...,
         [122, 135, 143],
         [127, 134, 154],
         [131, 134, 162]],
 
        ...,
 
        [[121, 162, 187],
         [121, 162, 187],
         [121, 162, 187],
         ...,
         [126, 132, 143],
         [126, 132, 143],
         [121, 127, 138]],
 
        [[121, 162, 187],
         [121, 162, 187],
         [121, 162, 187],
         ...,
         [125, 130, 139],
         [129, 133, 144],
         [127, 131, 142]],
 
        [[121, 162, 187],
         [121, 162, 187],
         [121, 162, 187],
         ...,
         [121, 126, 135],
         [125, 129, 140],
         [124, 128, 139]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-118-_jpg.rf.cf3c2b75ffec6c9e27d18a6b98b67bf9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2919902801513672, 'inference': 6.635427474975586, 'postprocess': 0.3371238708496094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.4871608ed18b586f1e4e5f2e440b1320.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4519691467285156, 'inference': 8.36801528930664, 'postprocess': 0.6659030914306641},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 1],
         [0, 0, 1],
         [0, 0, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 1],
         [0, 0, 1],
         [0, 0, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 1],
         [0, 0, 1],
         [0, 0, 1]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.8c7abcd78dd1d16256589acaf80a4182.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4781951904296875, 'inference': 6.703615188598633, 'postprocess': 0.36454200744628906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 18,  59,  38],
         [ 23,  64,  43],
         [ 24,  60,  43],
         ...,
         [ 59,  67,  66],
         [ 59,  67,  66],
         [ 59,  67,  66]],
 
        [[ 15,  56,  35],
         [ 17,  55,  37],
         [ 13,  49,  32],
         ...,
         [ 59,  67,  66],
         [ 59,  67,  66],
         [ 59,  67,  66]],
 
        [[ 13,  51,  33],
         [ 13,  51,  33],
         [ 10,  46,  30],
         ...,
         [ 59,  67,  66],
         [ 59,  67,  66],
         [ 58,  66,  65]],
 
        ...,
 
        [[109, 107,  99],
         [117, 115, 107],
         [118, 116, 108],
         ...,
         [ 96, 109, 107],
         [108, 121, 119],
         [120, 133, 131]],
 
        [[108, 105,  97],
         [119, 116, 108],
         [120, 117, 109],
         ...,
         [ 87, 100,  98],
         [ 84,  97,  95],
         [ 88, 101,  99]],
 
        [[108, 105,  97],
         [119, 116, 108],
         [120, 117, 109],
         ...,
         [100, 113, 111],
         [ 74,  87,  85],
         [ 56,  69,  67]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-119-_jpg.rf.efb59ea51e49ee98c39fcda52e3b6389.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4352798461914062, 'inference': 16.070842742919922, 'postprocess': 1.2841224670410156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        ...,
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [13, 12,  8],
         [13, 10,  6],
         [14, 10,  5]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [12, 11,  7],
         [14, 11,  7],
         [15, 11,  6]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [12, 11,  7],
         [14, 11,  7],
         [16, 12,  7]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.3145a5860685e71bb38756743d8c5132.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 3.149747848510742, 'inference': 12.865543365478516, 'postprocess': 0.5075931549072266},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[188, 199, 203],
         [187, 198, 202],
         [185, 197, 201],
         ...,
         [164, 165, 163],
         [158, 159, 155],
         [154, 155, 151]],
 
        [[187, 198, 202],
         [186, 197, 201],
         [185, 197, 201],
         ...,
         [165, 166, 164],
         [160, 161, 157],
         [158, 159, 155]],
 
        [[185, 196, 200],
         [184, 195, 199],
         [183, 195, 199],
         ...,
         [163, 161, 160],
         [161, 162, 158],
         [162, 163, 159]],
 
        ...,
 
        [[ 51,  69,  80],
         [ 48,  66,  77],
         [ 58,  75,  88],
         ...,
         [ 96, 104, 117],
         [ 96, 104, 117],
         [ 90,  98, 111]],
 
        [[ 54,  72,  83],
         [ 50,  68,  79],
         [ 53,  70,  83],
         ...,
         [ 98, 106, 119],
         [ 96, 104, 117],
         [ 89,  97, 110]],
 
        [[ 52,  70,  81],
         [ 53,  71,  82],
         [ 58,  75,  88],
         ...,
         [100, 108, 121],
         [ 97, 105, 118],
         [ 88,  96, 109]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.40ca7474661c6928638675cb6b4f648f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4007091522216797, 'inference': 6.620883941650391, 'postprocess': 0.35500526428222656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        ...,
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-12-_jpg.rf.f538915b42230d73cd5e22bcb4b06ce6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.667022705078125, 'inference': 7.260799407958984, 'postprocess': 0.41747093200683594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 43, 168, 153],
         [ 49, 174, 159],
         [ 42, 165, 151],
         ...,
         [  1,  10,   7],
         [  1,  10,   7],
         [  1,  10,   7]],
 
        [[ 41, 164, 150],
         [ 47, 170, 156],
         [ 43, 166, 152],
         ...,
         [  3,  10,   7],
         [  3,  10,   7],
         [  3,  10,   7]],
 
        [[ 35, 155, 144],
         [ 40, 160, 149],
         [ 40, 160, 149],
         ...,
         [  8,   8,   8],
         [  6,   8,   8],
         [  6,   8,   8]],
 
        ...,
 
        [[ 10,   8,   8],
         [ 10,   8,   8],
         [  8,   8,   8],
         ...,
         [118, 134, 147],
         [128, 144, 157],
         [140, 156, 169]],
 
        [[ 10,   8,   8],
         [ 10,   8,   8],
         [  8,   8,   8],
         ...,
         [129, 145, 158],
         [135, 151, 164],
         [145, 161, 174]],
 
        [[ 10,   8,   8],
         [ 10,   8,   8],
         [  8,   8,   8],
         ...,
         [136, 152, 165],
         [140, 156, 169],
         [146, 162, 175]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.292a7daa7fa877194720b879161d8c40.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5218257904052734, 'inference': 8.064746856689453, 'postprocess': 0.4200935363769531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   3,   1],
         [  0,   3,   1],
         [  0,   3,   1],
         ...,
         [ 10,  17,  10],
         [ 36,  40,  34],
         [ 57,  61,  55]],
 
        [[  0,   3,   1],
         [  0,   3,   1],
         [  0,   3,   1],
         ...,
         [ 61,  68,  61],
         [ 71,  78,  71],
         [ 80,  87,  80]],
 
        [[  0,   3,   1],
         [  0,   3,   1],
         [  0,   3,   1],
         ...,
         [ 78,  85,  80],
         [ 75,  82,  77],
         [ 74,  81,  76]],
 
        ...,
 
        [[149, 159, 159],
         [150, 160, 160],
         [152, 162, 162],
         ...,
         [138, 147, 156],
         [140, 149, 158],
         [146, 155, 164]],
 
        [[141, 151, 151],
         [143, 153, 153],
         [148, 158, 158],
         ...,
         [134, 143, 152],
         [137, 146, 155],
         [146, 155, 164]],
 
        [[147, 157, 157],
         [150, 160, 160],
         [155, 165, 165],
         ...,
         [136, 145, 154],
         [140, 149, 158],
         [149, 158, 167]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.6550c19d889288f83dca4f4c57545348.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6393661499023438, 'inference': 7.227420806884766, 'postprocess': 0.3886222839355469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 17,  17,  17],
         [ 16,  16,  16],
         [ 16,  16,  16],
         ...,
         [ 16,  16,  16],
         [ 16,  16,  16],
         [ 16,  16,  16]],
 
        [[ 17,  17,  17],
         [ 16,  16,  16],
         [ 16,  16,  16],
         ...,
         [ 16,  16,  16],
         [ 16,  16,  16],
         [ 16,  16,  16]],
 
        [[ 17,  17,  17],
         [ 16,  16,  16],
         [ 16,  16,  16],
         ...,
         [ 16,  16,  16],
         [ 16,  16,  16],
         [ 16,  16,  16]],
 
        ...,
 
        [[ 20,  17,  13],
         [ 20,  17,  13],
         [ 18,  15,  11],
         ...,
         [139, 147, 154],
         [138, 144, 151],
         [ 99, 105, 112]],
 
        [[ 24,  21,  17],
         [ 23,  20,  16],
         [ 18,  15,  11],
         ...,
         [181, 189, 196],
         [171, 177, 184],
         [117, 123, 130]],
 
        [[ 19,  16,  12],
         [ 20,  17,  13],
         [ 15,  12,   8],
         ...,
         [203, 211, 218],
         [194, 200, 207],
         [133, 139, 146]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-121-_jpg.rf.ca379af880817bcbc914bac8fd00d7e6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8439292907714844, 'inference': 6.8111419677734375, 'postprocess': 0.7321834564208984},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        ...,
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.727dc87f7e5fb44ce14cf3878f669aa7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.401662826538086, 'inference': 7.567882537841797, 'postprocess': 0.4596710205078125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 37,  31,  24],
         [ 40,  34,  27],
         [ 19,   9,   2],
         ...,
         [ 38,  28,  21],
         [ 41,  31,  24],
         [ 42,  32,  25]],
 
        [[ 48,  42,  35],
         [ 37,  31,  24],
         [ 17,   7,   0],
         ...,
         [ 43,  33,  26],
         [ 45,  35,  28],
         [ 47,  37,  30]],
 
        [[209, 203, 196],
         [135, 129, 122],
         [ 81,  71,  64],
         ...,
         [200, 190, 183],
         [202, 192, 185],
         [203, 193, 186]],
 
        ...,
 
        [[ 36,  31, 224],
         [ 27,  20, 219],
         [ 29,  15, 227],
         ...,
         [100, 108, 108],
         [ 93, 101, 101],
         [ 85,  93,  93]],
 
        [[ 49,  45, 240],
         [ 43,  37, 238],
         [ 45,  33, 247],
         ...,
         [ 91,  99,  99],
         [ 82,  90,  90],
         [ 73,  81,  81]],
 
        [[ 40,  39, 233],
         [ 38,  35, 235],
         [ 47,  34, 250],
         ...,
         [ 91,  99,  99],
         [ 81,  89,  89],
         [ 70,  78,  78]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.a7402de11b1c3f7af0cc32933211e3f6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.722574234008789, 'inference': 7.030487060546875, 'postprocess': 0.44155120849609375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-122-_jpg.rf.c136dab4f56b39061798109d2420b61f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4119148254394531, 'inference': 6.615161895751953, 'postprocess': 0.3924369812011719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.5e69150b156446dbd25a1ba55e83d665.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6689300537109375, 'inference': 7.184743881225586, 'postprocess': 0.41866302490234375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [155, 135, 118],
         [168, 143, 133],
         [168, 139, 134]],
 
        [[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [157, 138, 123],
         [172, 146, 140],
         [171, 144, 140]],
 
        [[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [148, 129, 122],
         [158, 135, 133],
         [157, 131, 131]],
 
        ...,
 
        [[126, 114, 108],
         [127, 115, 109],
         [130, 118, 112],
         ...,
         [206, 194, 190],
         [203, 191, 187],
         [202, 190, 186]],
 
        [[129, 117, 111],
         [130, 118, 112],
         [132, 120, 114],
         ...,
         [207, 195, 191],
         [206, 194, 190],
         [204, 192, 188]],
 
        [[132, 120, 114],
         [133, 121, 115],
         [134, 122, 116],
         ...,
         [208, 196, 192],
         [207, 195, 191],
         [206, 194, 190]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.5f9ee27d0fe8571af0685b1746b9d7fc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7888545989990234, 'inference': 8.311986923217773, 'postprocess': 0.469207763671875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        ...,
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-124-_jpg.rf.e75e7815306ccb81e78d7f8b63857483.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4348030090332031, 'inference': 7.868528366088867, 'postprocess': 0.23889541625976562},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.260cc574c3efc137da742a912741a3fb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5273094177246094, 'inference': 7.620573043823242, 'postprocess': 0.4982948303222656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[122, 113, 100],
         [121, 112,  99],
         [120, 111, 101],
         ...,
         [ 30,  32,  32],
         [ 30,  32,  32],
         [ 30,  32,  32]],
 
        [[ 55,  46,  33],
         [ 50,  41,  28],
         [ 46,  37,  27],
         ...,
         [ 21,  23,  23],
         [ 21,  23,  23],
         [ 21,  23,  23]],
 
        [[ 27,  18,   8],
         [ 23,  14,   4],
         [ 20,  11,   1],
         ...,
         [ 18,  20,  20],
         [ 18,  20,  20],
         [ 18,  20,  20]],
 
        ...,
 
        [[120, 124, 125],
         [124, 128, 129],
         [137, 141, 142],
         ...,
         [135, 147, 151],
         [136, 148, 152],
         [136, 148, 152]],
 
        [[ 95,  99, 100],
         [105, 109, 110],
         [119, 123, 124],
         ...,
         [131, 143, 147],
         [134, 146, 150],
         [134, 146, 150]],
 
        [[ 31,  35,  36],
         [ 66,  70,  71],
         [103, 107, 108],
         ...,
         [128, 140, 144],
         [131, 143, 147],
         [133, 145, 149]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.4d5c28bfd2ec83debd1fa97e86bbddb4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.645803451538086, 'inference': 7.307291030883789, 'postprocess': 0.5121231079101562},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-126-_jpg.rf.c72b1826e8aaa63d8f1713c2957e93e5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4841556549072266, 'inference': 7.112979888916016, 'postprocess': 0.3256797790527344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        ...,
 
        [[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.4aebae9cb49eac155acea198eb8d4649.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6074180603027344, 'inference': 7.90095329284668, 'postprocess': 0.3275871276855469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   2,   0],
         [  0,   4,   0],
         [  0,   2,   0],
         ...,
         [147, 142, 141],
         [147, 143, 142],
         [148, 144, 143]],
 
        [[  0,   2,   0],
         [  0,   5,   0],
         [  0,   2,   0],
         ...,
         [131, 126, 125],
         [132, 128, 127],
         [132, 128, 127]],
 
        [[  0,   3,   1],
         [  1,   4,   2],
         [  0,   1,   0],
         ...,
         [114, 109, 108],
         [113, 109, 108],
         [113, 109, 108]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.513297c58b670dfbcee0c02f22a76c9f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6140937805175781, 'inference': 7.954597473144531, 'postprocess': 0.5037784576416016},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[100,  84,  72],
         [101,  85,  73],
         [103,  87,  75],
         ...,
         [124, 122, 112],
         [125, 122, 114],
         [125, 122, 114]],
 
        [[137, 121, 109],
         [138, 122, 110],
         [139, 123, 111],
         ...,
         [132, 126, 119],
         [132, 126, 121],
         [132, 126, 121]],
 
        [[162, 147, 138],
         [162, 147, 138],
         [161, 146, 137],
         ...,
         [151, 139, 139],
         [150, 138, 138],
         [150, 138, 138]],
 
        ...,
 
        [[192, 196, 207],
         [195, 199, 210],
         [184, 188, 199],
         ...,
         [149, 158, 168],
         [171, 180, 190],
         [159, 168, 178]],
 
        [[186, 190, 201],
         [194, 198, 209],
         [193, 197, 208],
         ...,
         [141, 150, 160],
         [144, 153, 163],
         [147, 156, 166]],
 
        [[183, 187, 198],
         [192, 196, 207],
         [195, 199, 210],
         ...,
         [162, 171, 181],
         [146, 155, 165],
         [154, 163, 173]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-127-_jpg.rf.762e69fb9b1c80f586c501b5b9c515db.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5435218811035156, 'inference': 7.863521575927734, 'postprocess': 0.42819976806640625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.0ac3472d1668a73f904ec562bcfc43ff.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.325368881225586, 'inference': 6.911993026733398, 'postprocess': 0.33545494079589844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 11,  18,  15],
         [ 11,  18,  15],
         [ 11,  18,  15],
         ...,
         [ 11,  18,  11],
         [  9,  16,   9],
         [  6,  13,   6]],
 
        [[ 11,  18,  15],
         [ 13,  20,  17],
         [ 14,  21,  18],
         ...,
         [ 16,  23,  16],
         [ 14,  21,  14],
         [ 13,  20,  13]],
 
        [[ 22,  29,  26],
         [ 25,  32,  29],
         [ 28,  35,  32],
         ...,
         [ 25,  32,  25],
         [ 25,  32,  25],
         [ 26,  33,  26]],
 
        ...,
 
        [[ 76,  81,  66],
         [ 78,  83,  68],
         [ 82,  87,  72],
         ...,
         [143, 159, 152],
         [143, 157, 151],
         [142, 156, 150]],
 
        [[ 75,  80,  65],
         [ 73,  78,  63],
         [ 74,  79,  64],
         ...,
         [145, 161, 154],
         [141, 155, 149],
         [137, 151, 145]],
 
        [[ 76,  81,  66],
         [ 71,  76,  61],
         [ 70,  75,  60],
         ...,
         [150, 166, 159],
         [144, 158, 152],
         [138, 152, 146]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.145c4607840c2bcac86b2f76c28a7750.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.699686050415039, 'inference': 9.77635383605957, 'postprocess': 0.6976127624511719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 57,  69,  63],
         [ 58,  70,  64],
         [ 60,  72,  66],
         ...,
         [ 78,  91,  77],
         [ 67,  80,  66],
         [ 69,  82,  68]],
 
        [[ 54,  66,  60],
         [ 57,  69,  63],
         [ 61,  73,  67],
         ...,
         [ 75,  88,  74],
         [ 67,  80,  66],
         [ 77,  90,  76]],
 
        [[ 52,  64,  58],
         [ 56,  68,  62],
         [ 60,  72,  66],
         ...,
         [ 69,  82,  68],
         [ 67,  80,  66],
         [ 88, 101,  87]],
 
        ...,
 
        [[  3,   2,   4],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   3,   1],
         [  0,   1,   1],
         [  0,   1,   0]],
 
        [[  2,   1,   3],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   1],
         [  0,   0,   0]],
 
        [[  0,   0,   1],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   2,   3],
         [  0,   2,   3],
         [  0,   2,   3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-128-_jpg.rf.e9d874018c8eb5296749630aca5603e6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3463497161865234, 'inference': 7.009744644165039, 'postprocess': 0.40340423583984375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [59, 45, 39],
         [51, 37, 31],
         [45, 31, 25]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [38, 26, 20],
         [34, 22, 16],
         [31, 19, 13]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [12,  0,  0],
         [13,  1,  0],
         [14,  2,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.6ada3c0e80b409618278df949cd6b7e5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.369403839111328, 'inference': 14.146566390991211, 'postprocess': 0.6868839263916016},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[254, 248, 189],
         [254, 248, 189],
         [254, 249, 188],
         ...,
         [245, 192, 141],
         [245, 192, 141],
         [245, 192, 141]],
 
        [[255, 249, 190],
         [255, 249, 190],
         [255, 250, 189],
         ...,
         [245, 192, 141],
         [245, 192, 141],
         [245, 192, 141]],
 
        [[255, 252, 193],
         [255, 252, 193],
         [255, 252, 193],
         ...,
         [246, 193, 143],
         [246, 193, 143],
         [246, 193, 143]],
 
        ...,
 
        [[ 66,  55,  51],
         [ 52,  41,  37],
         [ 39,  27,  23],
         ...,
         [ 40,  61,  69],
         [131, 156, 166],
         [163, 190, 200]],
 
        [[ 45,  34,  30],
         [ 33,  22,  18],
         [ 27,  15,  11],
         ...,
         [ 41,  64,  72],
         [ 90, 117, 127],
         [120, 149, 158]],
 
        [[ 41,  30,  26],
         [ 31,  20,  16],
         [ 29,  17,  13],
         ...,
         [ 53,  76,  84],
         [ 62,  89,  99],
         [ 90, 119, 128]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.b5e4ccd6fb004ba11f36c902116a6dfa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4984607696533203, 'inference': 7.489919662475586, 'postprocess': 0.36907196044921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-13-_jpg.rf.f7751cf8a51dd62c4e458caa96bc1906.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6644001007080078, 'inference': 15.705347061157227, 'postprocess': 0.7469654083251953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 31,  36,  27],
         [ 29,  34,  25],
         [ 26,  31,  22],
         ...,
         [164, 161, 157],
         [164, 161, 157],
         [164, 161, 157]],
 
        [[ 32,  37,  28],
         [ 30,  35,  26],
         [ 28,  33,  24],
         ...,
         [164, 161, 157],
         [163, 160, 156],
         [163, 160, 156]],
 
        [[ 32,  37,  28],
         [ 31,  36,  27],
         [ 29,  34,  25],
         ...,
         [161, 159, 158],
         [160, 158, 157],
         [160, 158, 157]],
 
        ...,
 
        [[ 17,  15,  14],
         [ 17,  15,  14],
         [ 18,  16,  15],
         ...,
         [ 94,  87,  84],
         [ 77,  70,  67],
         [ 78,  71,  68]],
 
        [[ 19,  17,  16],
         [ 18,  16,  15],
         [ 18,  16,  15],
         ...,
         [117, 110, 107],
         [ 88,  81,  78],
         [ 72,  65,  62]],
 
        [[ 20,  18,  17],
         [ 19,  17,  16],
         [ 18,  16,  15],
         ...,
         [150, 143, 140],
         [140, 133, 130],
         [118, 111, 108]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.0f6726c68af9fe60c2249e2349f8c049.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6143321990966797, 'inference': 7.072925567626953, 'postprocess': 0.3590583801269531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        ...,
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.2326fd752be4eb885ad113b533f9ac5c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3167858123779297, 'inference': 10.020017623901367, 'postprocess': 0.5767345428466797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[27, 27, 27],
         [27, 27, 27],
         [27, 27, 27],
         ...,
         [27, 27, 27],
         [27, 27, 27],
         [27, 27, 27]],
 
        [[27, 27, 27],
         [27, 27, 27],
         [27, 27, 27],
         ...,
         [27, 27, 27],
         [27, 27, 27],
         [27, 27, 27]],
 
        [[27, 27, 27],
         [27, 27, 27],
         [27, 27, 27],
         ...,
         [27, 27, 27],
         [27, 27, 27],
         [27, 27, 27]],
 
        ...,
 
        [[27, 27, 27],
         [27, 27, 27],
         [27, 27, 27],
         ...,
         [27, 27, 27],
         [27, 27, 27],
         [27, 27, 27]],
 
        [[27, 27, 27],
         [27, 27, 27],
         [27, 27, 27],
         ...,
         [27, 27, 27],
         [27, 27, 27],
         [27, 27, 27]],
 
        [[27, 27, 27],
         [27, 27, 27],
         [27, 27, 27],
         ...,
         [27, 27, 27],
         [27, 27, 27],
         [27, 27, 27]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-130-_jpg.rf.573aa03e77804ed419f1fd0a190ba13a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5058517456054688, 'inference': 7.132053375244141, 'postprocess': 0.6115436553955078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 41,  36,  37],
         [ 37,  32,  33],
         [ 23,  18,  19],
         ...,
         [221, 240, 247],
         [221, 239, 246],
         [220, 238, 245]],
 
        [[ 39,  34,  35],
         [ 36,  31,  32],
         [ 23,  18,  19],
         ...,
         [222, 241, 248],
         [222, 240, 247],
         [221, 239, 246]],
 
        [[ 34,  32,  32],
         [ 34,  32,  32],
         [ 24,  21,  23],
         ...,
         [224, 243, 250],
         [223, 242, 249],
         [223, 242, 249]],
 
        ...,
 
        [[ 31,  53,  71],
         [ 35,  57,  75],
         [ 14,  38,  56],
         ...,
         [ 92, 140, 174],
         [110, 158, 192],
         [103, 151, 185]],
 
        [[ 24,  48,  66],
         [ 28,  52,  70],
         [ 13,  37,  55],
         ...,
         [ 93, 141, 175],
         [111, 159, 193],
         [104, 152, 186]],
 
        [[ 27,  51,  69],
         [ 28,  52,  70],
         [ 11,  35,  53],
         ...,
         [ 94, 142, 176],
         [112, 160, 194],
         [106, 154, 188]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.30c2f70058a6fad525c31f57d3952d4d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5110969543457031, 'inference': 7.286787033081055, 'postprocess': 0.3857612609863281},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        ...,
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.7a54a7e1ad2243629779c48a41b94ca1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3775825500488281, 'inference': 8.1024169921875, 'postprocess': 0.35953521728515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [1, 3, 4],
         [0, 2, 6],
         [0, 2, 6]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [1, 3, 4],
         [0, 2, 6],
         [0, 2, 6]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [1, 3, 4],
         [0, 2, 6],
         [0, 2, 6]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-131-_jpg.rf.9506d58945bc1f6e0cd0b6810ca40ad5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5573501586914062, 'inference': 9.962320327758789, 'postprocess': 1.0192394256591797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 76,  76,  76],
         [ 76,  76,  76],
         [ 77,  77,  77],
         ...,
         [224, 222, 221],
         [238, 236, 235],
         [166, 164, 163]],
 
        [[ 76,  76,  76],
         [ 76,  76,  76],
         [ 77,  77,  77],
         ...,
         [226, 224, 223],
         [237, 235, 234],
         [162, 160, 159]],
 
        [[ 76,  76,  76],
         [ 75,  75,  75],
         [ 77,  77,  77],
         ...,
         [228, 226, 225],
         [236, 234, 233],
         [157, 155, 154]],
 
        ...,
 
        [[ 74,  74,  74],
         [ 74,  74,  74],
         [ 75,  75,  75],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]],
 
        [[ 73,  73,  73],
         [ 73,  73,  73],
         [ 73,  73,  73],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]],
 
        [[ 78,  78,  78],
         [ 77,  77,  77],
         [ 76,  76,  76],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.17911c1b0d9ce482c109ce1e784940b4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3699531555175781, 'inference': 8.393526077270508, 'postprocess': 0.7274150848388672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.797a01efcb3ccc31edc05fbd79854344.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6553401947021484, 'inference': 7.515907287597656, 'postprocess': 0.3261566162109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[160, 157, 153],
         [180, 177, 173],
         [189, 186, 182],
         ...,
         [138, 135, 131],
         [141, 138, 134],
         [150, 147, 143]],
 
        [[166, 163, 159],
         [177, 174, 170],
         [182, 179, 175],
         ...,
         [139, 136, 132],
         [141, 138, 134],
         [149, 146, 142]],
 
        [[179, 176, 172],
         [175, 172, 168],
         [173, 170, 166],
         ...,
         [153, 150, 146],
         [152, 149, 145],
         [158, 155, 151]],
 
        ...,
 
        [[104, 100,  99],
         [113, 109, 108],
         [118, 114, 113],
         ...,
         [168, 168, 168],
         [160, 160, 160],
         [157, 157, 157]],
 
        [[ 82,  78,  77],
         [ 97,  93,  92],
         [107, 103, 102],
         ...,
         [175, 175, 175],
         [164, 164, 164],
         [151, 151, 151]],
 
        [[ 84,  80,  79],
         [101,  97,  96],
         [112, 108, 107],
         ...,
         [180, 180, 180],
         [167, 167, 167],
         [145, 145, 145]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-132-_jpg.rf.955ee641285edaa97d368881f70563fd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4064311981201172, 'inference': 8.297920227050781, 'postprocess': 0.5257129669189453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.24a41f4b91e68f7e35f7d2feff83054d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4979839324951172, 'inference': 8.029460906982422, 'postprocess': 0.3383159637451172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.7aa442a433a0074d31ec5ba2de39c2a4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5861988067626953, 'inference': 7.620811462402344, 'postprocess': 0.36406517028808594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[129, 120, 123],
         [128, 119, 122],
         [127, 118, 121],
         ...,
         [149, 132, 129],
         [149, 132, 129],
         [149, 132, 129]],
 
        [[129, 120, 123],
         [128, 119, 122],
         [128, 119, 122],
         ...,
         [149, 132, 129],
         [149, 132, 129],
         [149, 132, 129]],
 
        [[126, 117, 120],
         [126, 117, 120],
         [125, 116, 119],
         ...,
         [149, 132, 129],
         [149, 132, 129],
         [149, 132, 129]],
 
        ...,
 
        [[144, 153, 162],
         [145, 154, 163],
         [148, 157, 166],
         ...,
         [155, 157, 168],
         [158, 160, 171],
         [157, 159, 170]],
 
        [[160, 169, 178],
         [160, 169, 178],
         [154, 163, 172],
         ...,
         [152, 154, 165],
         [154, 156, 167],
         [154, 156, 167]],
 
        [[150, 159, 168],
         [155, 164, 173],
         [154, 163, 172],
         ...,
         [154, 156, 167],
         [156, 158, 169],
         [155, 157, 168]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-133-_jpg.rf.8dc9e79be10c01f6f279b4c27266ab65.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3833045959472656, 'inference': 8.50224494934082, 'postprocess': 0.39505958557128906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.517c7c3c07571b10697a58b567940b58.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6140937805175781, 'inference': 8.348464965820312, 'postprocess': 0.45371055603027344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[204, 199, 200],
         [203, 198, 199],
         [203, 198, 199],
         ...,
         [  8,   8,   8],
         [  9,   9,   9],
         [  9,   9,   9]],
 
        [[204, 199, 200],
         [203, 198, 199],
         [203, 198, 199],
         ...,
         [  8,   8,   8],
         [  9,   9,   9],
         [  9,   9,   9]],
 
        [[204, 199, 200],
         [203, 198, 199],
         [203, 198, 199],
         ...,
         [  8,   8,   8],
         [  9,   9,   9],
         [  9,   9,   9]],
 
        ...,
 
        [[106, 112, 107],
         [ 99, 105, 100],
         [ 88,  93,  91],
         ...,
         [ 37,  33,  32],
         [ 35,  31,  30],
         [ 33,  29,  28]],
 
        [[113, 119, 114],
         [105, 111, 106],
         [ 96, 102,  97],
         ...,
         [ 37,  32,  31],
         [ 32,  27,  24],
         [ 28,  23,  20]],
 
        [[116, 122, 117],
         [106, 112, 107],
         [ 94, 100,  95],
         ...,
         [ 34,  29,  28],
         [ 28,  23,  20],
         [ 24,  19,  16]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.a84bccc6824f607509bb701d8ccd3c87.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4278888702392578, 'inference': 7.313966751098633, 'postprocess': 0.36835670471191406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [23, 23, 23],
         [23, 23, 23],
         [23, 23, 23]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [25, 25, 25],
         [25, 25, 25],
         [25, 25, 25]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [27, 27, 27]],
 
        ...,
 
        [[22, 24, 24],
         [22, 24, 24],
         [22, 24, 24],
         ...,
         [24, 24, 24],
         [22, 24, 25],
         [22, 24, 25]],
 
        [[20, 25, 24],
         [20, 25, 24],
         [20, 25, 24],
         ...,
         [24, 24, 24],
         [22, 24, 25],
         [22, 24, 25]],
 
        [[20, 25, 24],
         [20, 25, 24],
         [20, 25, 24],
         ...,
         [24, 24, 24],
         [22, 24, 25],
         [22, 24, 25]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-134-_jpg.rf.e15dd6f2f2bc285d64fef68fb2d92164.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4538764953613281, 'inference': 7.3833465576171875, 'postprocess': 0.32711029052734375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.1ee928d9f772b66ef1a56bc9ddc702b2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7695426940917969, 'inference': 7.767438888549805, 'postprocess': 0.33545494079589844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        ...,
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.9cee00f51ec30b4e0f591b2da2007a10.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3871192932128906, 'inference': 7.717370986938477, 'postprocess': 0.5726814270019531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 95, 114, 122],
         [ 94, 113, 121],
         [ 92, 111, 119],
         ...,
         [108,  97,  93],
         [106,  95,  91],
         [104,  93,  89]],
 
        [[104, 123, 131],
         [101, 120, 128],
         [ 97, 116, 124],
         ...,
         [108,  97,  93],
         [105,  94,  90],
         [103,  92,  88]],
 
        [[107, 128, 136],
         [104, 125, 133],
         [101, 120, 127],
         ...,
         [106,  95,  91],
         [104,  93,  89],
         [102,  91,  87]],
 
        ...,
 
        [[137, 128, 125],
         [130, 121, 118],
         [101,  92,  89],
         ...,
         [ 94,  85,  82],
         [ 96,  87,  84],
         [116, 107, 104]],
 
        [[121, 112, 109],
         [126, 117, 114],
         [ 97,  88,  85],
         ...,
         [115, 106, 103],
         [ 96,  87,  84],
         [107,  98,  95]],
 
        [[102,  93,  90],
         [118, 109, 106],
         [ 90,  81,  78],
         ...,
         [137, 128, 125],
         [104,  95,  92],
         [105,  96,  93]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-135-_jpg.rf.d3d07ce395c3562793390b1003e99d1f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4634132385253906, 'inference': 7.352590560913086, 'postprocess': 0.38170814514160156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 3,  1,  1],
         [ 2,  0,  0],
         [ 0,  0,  0],
         ...,
         [43, 45, 55],
         [38, 40, 50],
         [38, 40, 50]],
 
        [[ 2,  0,  0],
         [ 2,  0,  0],
         [ 0,  0,  0],
         ...,
         [45, 47, 57],
         [40, 42, 52],
         [39, 41, 51]],
 
        [[ 2,  0,  0],
         [ 2,  0,  0],
         [ 0,  0,  0],
         ...,
         [46, 48, 58],
         [39, 41, 51],
         [36, 38, 48]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.28112df3106c2b4485053cd6371a47ef.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4476776123046875, 'inference': 7.26008415222168, 'postprocess': 0.3261566162109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.af169e1464071ae718f22b5baebe13a6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4581680297851562, 'inference': 7.286548614501953, 'postprocess': 0.3540515899658203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[126, 129, 133],
         [124, 127, 131],
         [138, 141, 145],
         ...,
         [ 75,  85,  85],
         [153, 163, 163],
         [163, 173, 173]],
 
        [[125, 128, 132],
         [127, 130, 134],
         [142, 145, 149],
         ...,
         [ 76,  86,  86],
         [154, 164, 164],
         [164, 174, 174]],
 
        [[116, 119, 123],
         [138, 141, 145],
         [157, 160, 164],
         ...,
         [ 78,  88,  88],
         [155, 165, 165],
         [164, 174, 174]],
 
        ...,
 
        [[ 33,  34,  32],
         [ 39,  40,  38],
         [ 48,  49,  47],
         ...,
         [ 52,  52,  52],
         [ 51,  51,  51],
         [ 47,  47,  47]],
 
        [[ 32,  33,  31],
         [ 30,  31,  29],
         [ 50,  51,  49],
         ...,
         [ 62,  62,  62],
         [ 61,  61,  61],
         [ 55,  55,  55]],
 
        [[ 38,  39,  37],
         [ 26,  27,  25],
         [ 50,  51,  49],
         ...,
         [ 64,  64,  64],
         [ 60,  60,  60],
         [ 52,  52,  52]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-136-_jpg.rf.d694cf94912347ceff66727b95ecb05a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.337289810180664, 'inference': 7.455587387084961, 'postprocess': 0.4668235778808594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  1,   0,   4],
         [  2,   1,   5],
         [  3,   2,   6]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [ 38,  37,  41],
         [ 37,  36,  40],
         [ 36,  35,  39]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [159, 158, 162],
         [156, 155, 159],
         [154, 153, 157]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.374184952caf59cfa399166b0111b640.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.708984375, 'inference': 8.065462112426758, 'postprocess': 0.3726482391357422},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.5b5d603ae481652805ea93e3698ea609.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4650821685791016, 'inference': 7.509469985961914, 'postprocess': 0.35190582275390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[195, 195, 195],
         [183, 183, 183],
         [181, 181, 181],
         ...,
         [172, 165, 172],
         [170, 162, 169],
         [187, 179, 186]],
 
        [[187, 187, 187],
         [169, 169, 169],
         [163, 163, 163],
         ...,
         [172, 165, 172],
         [167, 159, 166],
         [186, 178, 185]],
 
        [[186, 186, 186],
         [165, 165, 165],
         [157, 157, 157],
         ...,
         [165, 158, 165],
         [159, 151, 158],
         [183, 175, 182]],
 
        ...,
 
        [[124, 119, 120],
         [153, 148, 149],
         [155, 150, 151],
         ...,
         [127, 121, 126],
         [128, 121, 126],
         [156, 149, 154]],
 
        [[142, 136, 137],
         [158, 152, 153],
         [160, 154, 155],
         ...,
         [147, 141, 146],
         [126, 119, 124],
         [141, 134, 139]],
 
        [[168, 162, 163],
         [169, 163, 164],
         [163, 157, 158],
         ...,
         [154, 148, 153],
         [109, 102, 107],
         [130, 123, 128]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-137-_jpg.rf.eec8497f7279810ff44902d6eca0121b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3713836669921875, 'inference': 7.580757141113281, 'postprocess': 0.3666877746582031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 69,  78,  75],
         [ 71,  80,  77],
         [ 72,  81,  78],
         ...,
         [ 21,  24,  52],
         [ 20,  21,  49],
         [ 19,  20,  48]],
 
        [[ 65,  74,  71],
         [ 68,  77,  74],
         [ 71,  80,  77],
         ...,
         [ 17,  21,  50],
         [ 17,  19,  49],
         [ 17,  19,  49]],
 
        [[ 54,  63,  60],
         [ 59,  68,  65],
         [ 65,  74,  71],
         ...,
         [ 15,  20,  51],
         [ 17,  22,  55],
         [ 19,  24,  57]],
 
        ...,
 
        [[ 23,  29,  36],
         [ 16,  22,  29],
         [  9,  15,  22],
         ...,
         [101, 115, 127],
         [107, 120, 134],
         [114, 130, 143]],
 
        [[ 14,  20,  27],
         [  8,  14,  21],
         [  3,   9,  16],
         ...,
         [ 98, 112, 124],
         [107, 123, 136],
         [102, 118, 134]],
 
        [[ 10,  16,  23],
         [  4,  10,  17],
         [  1,   7,  14],
         ...,
         [100, 116, 128],
         [108, 123, 139],
         [ 91, 107, 123]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.07fa25bc5fbd7c2711b9ce8ac28ad6a2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4376640319824219, 'inference': 8.318185806274414, 'postprocess': 0.3535747528076172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.766c3d35632f4641ce9d5207a3cadd70.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.434326171875, 'inference': 7.804393768310547, 'postprocess': 0.3333091735839844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-138-_jpg.rf.8b1343ad71a58c8daf99e2311627f0c8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4986991882324219, 'inference': 8.381843566894531, 'postprocess': 0.39839744567871094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  1,  0],
         [ 0,  2,  1],
         [ 1,  1,  1],
         ...,
         [ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  3]],
 
        [[ 0,  1,  0],
         [ 0,  2,  1],
         [ 1,  1,  1],
         ...,
         [30, 29, 33],
         [31, 29, 35],
         [31, 30, 34]],
 
        [[ 0,  1,  0],
         [ 0,  2,  1],
         [ 1,  1,  1],
         ...,
         [52, 52, 58],
         [53, 52, 61],
         [53, 53, 59]],
 
        ...,
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 4,  0,  0],
         [ 4,  0,  0],
         [ 4,  0,  0]],
 
        [[ 0,  2,  0],
         [ 0,  2,  0],
         [ 0,  1,  0],
         ...,
         [ 2,  0,  0],
         [ 2,  0,  0],
         [ 2,  0,  0]],
 
        [[ 0,  2,  0],
         [ 0,  2,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  1,  0],
         [ 3,  1,  0],
         [ 2,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.68c4e347a47e89fb46aedd298c2c3e5c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6922950744628906, 'inference': 10.506629943847656, 'postprocess': 0.4734992980957031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.738912a20f4c9753a555bf9e7a468851.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.360177993774414, 'inference': 7.7915191650390625, 'postprocess': 0.48851966857910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 57,  45,  41],
         [ 57,  45,  41],
         [ 59,  47,  43],
         ...,
         [119, 132, 148],
         [120, 133, 149],
         [121, 134, 150]],
 
        [[ 58,  46,  42],
         [ 58,  46,  42],
         [ 58,  46,  42],
         ...,
         [119, 132, 148],
         [120, 133, 149],
         [120, 133, 149]],
 
        [[ 62,  47,  44],
         [ 61,  46,  43],
         [ 60,  45,  42],
         ...,
         [120, 130, 147],
         [121, 131, 148],
         [121, 131, 148]],
 
        ...,
 
        [[ 93,  94,  92],
         [130, 126, 125],
         [ 32,  23,  20],
         ...,
         [ 54,  40,  41],
         [ 74,  60,  61],
         [ 94,  80,  81]],
 
        [[ 83,  84,  82],
         [ 90,  86,  85],
         [ 34,  25,  22],
         ...,
         [ 70,  56,  58],
         [ 68,  54,  56],
         [ 77,  63,  65]],
 
        [[ 47,  48,  46],
         [ 41,  37,  36],
         [ 25,  16,  13],
         ...,
         [ 86,  72,  74],
         [ 71,  57,  59],
         [ 69,  55,  57]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-139-_jpg.rf.87bfef6ce65eb5df5b6053523e6b4954.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5368461608886719, 'inference': 10.367155075073242, 'postprocess': 0.7126331329345703},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [ 87,  87,  87],
         [ 85,  87,  87],
         [ 85,  87,  87]],
 
        [[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [ 87,  87,  87],
         [ 85,  87,  87],
         [ 85,  87,  87]],
 
        [[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [ 87,  87,  87],
         [ 85,  87,  87],
         [ 85,  87,  87]],
 
        ...,
 
        [[127, 131, 136],
         [131, 135, 140],
         [136, 140, 145],
         ...,
         [ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87]],
 
        [[129, 133, 138],
         [133, 137, 142],
         [136, 140, 145],
         ...,
         [ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87]],
 
        [[123, 127, 132],
         [126, 130, 135],
         [128, 132, 137],
         ...,
         [ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.0cf42e6b552e8f867e76237f36e7eadc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4040470123291016, 'inference': 8.232593536376953, 'postprocess': 1.0738372802734375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.3e2f11367531d04d10e9132cf6fe9b8f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5742778778076172, 'inference': 7.481813430786133, 'postprocess': 0.3769397735595703},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[149, 167, 174],
         [154, 172, 179],
         [161, 179, 186],
         ...,
         [  9,   9,   9],
         [  5,   5,   5],
         [  3,   3,   3]],
 
        [[150, 168, 175],
         [155, 173, 180],
         [161, 179, 186],
         ...,
         [ 10,  10,  10],
         [  8,   8,   8],
         [  6,   6,   6]],
 
        [[152, 170, 177],
         [156, 174, 181],
         [160, 178, 185],
         ...,
         [ 13,  13,  13],
         [ 12,  12,  12],
         [ 10,  10,  10]],
 
        ...,
 
        [[ 94,  98, 103],
         [ 90,  94,  99],
         [ 88,  92,  97],
         ...,
         [ 37,  42,  51],
         [ 39,  44,  53],
         [ 43,  48,  57]],
 
        [[ 96, 100, 105],
         [ 89,  93,  98],
         [ 85,  89,  94],
         ...,
         [ 33,  38,  47],
         [ 38,  43,  52],
         [ 47,  52,  61]],
 
        [[ 96, 100, 105],
         [ 87,  91,  96],
         [ 82,  86,  91],
         ...,
         [ 30,  35,  44],
         [ 38,  43,  52],
         [ 49,  54,  63]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-14-_jpg.rf.5795a6265ed32db2ca7965aa7e0174b1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3928413391113281, 'inference': 7.721900939941406, 'postprocess': 0.42128562927246094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[252, 252, 240],
         [253, 253, 241],
         [253, 253, 241],
         ...,
         [162, 164, 164],
         [224, 226, 226],
         [232, 234, 234]],
 
        [[252, 252, 240],
         [253, 253, 241],
         [253, 253, 241],
         ...,
         [163, 165, 165],
         [237, 239, 239],
         [244, 246, 246]],
 
        [[253, 253, 241],
         [253, 253, 241],
         [254, 254, 242],
         ...,
         [160, 162, 162],
         [244, 246, 246],
         [246, 248, 248]],
 
        ...,
 
        [[ 55,  59,  60],
         [ 56,  60,  61],
         [ 69,  73,  74],
         ...,
         [143, 152, 161],
         [130, 139, 148],
         [129, 138, 147]],
 
        [[ 53,  57,  58],
         [ 58,  62,  63],
         [ 77,  81,  82],
         ...,
         [136, 145, 154],
         [121, 130, 139],
         [111, 120, 129]],
 
        [[ 82,  86,  87],
         [ 79,  83,  84],
         [ 84,  88,  89],
         ...,
         [133, 142, 151],
         [121, 130, 139],
         [107, 116, 125]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.94b5851bcded6830d88bef9ed5001cc4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5740394592285156, 'inference': 8.15129280090332, 'postprocess': 0.5629062652587891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.dc5bb23e947044e6c4a4572abc3e8213.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5347003936767578, 'inference': 7.957696914672852, 'postprocess': 0.34618377685546875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-141-_jpg.rf.fc3d1df38a5c4e68febeb45b2a132f4a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3151168823242188, 'inference': 7.716655731201172, 'postprocess': 0.331878662109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 11,   9,   8],
         [ 10,   8,   7],
         [  9,   7,   6],
         ...,
         [ 93,  96, 104],
         [ 90,  93, 101],
         [ 89,  92, 100]],
 
        [[ 11,   9,   8],
         [ 10,   8,   7],
         [  8,   6,   5],
         ...,
         [ 94,  97, 105],
         [ 92,  95, 103],
         [ 90,  93, 101]],
 
        [[ 10,   8,   7],
         [  9,   7,   6],
         [  7,   5,   4],
         ...,
         [ 97,  99, 107],
         [ 95,  97, 105],
         [ 93,  95, 103]],
 
        ...,
 
        [[119, 128, 138],
         [121, 130, 140],
         [123, 132, 142],
         ...,
         [ 86,  94, 111],
         [ 81,  89, 106],
         [ 77,  85, 102]],
 
        [[116, 125, 135],
         [119, 128, 138],
         [121, 130, 140],
         ...,
         [ 78,  86, 103],
         [ 76,  84, 101],
         [ 76,  84, 101]],
 
        [[115, 124, 134],
         [117, 126, 136],
         [120, 129, 139],
         ...,
         [ 71,  79,  96],
         [ 71,  79,  96],
         [ 73,  81,  98]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.0879365f4e7e435dba77c82134cc5623.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.505136489868164, 'inference': 7.599353790283203, 'postprocess': 0.3502368927001953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 1, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 1, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 1, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 1],
         [0, 0, 1],
         [0, 0, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[3, 2, 4],
         [2, 1, 3],
         [0, 0, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 1],
         [0, 0, 1],
         [0, 0, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.8658b3f74ded0b4631ae8fb8215d1f97.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.451253890991211, 'inference': 7.594108581542969, 'postprocess': 0.36644935607910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        ...,
 
        [[113, 122, 132],
         [113, 122, 132],
         [114, 123, 133],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[113, 122, 132],
         [113, 122, 132],
         [113, 122, 132],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[113, 122, 132],
         [113, 122, 132],
         [112, 121, 131],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-142-_jpg.rf.d06e1261d14a5a908632f7f9984b1533.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5425682067871094, 'inference': 7.614850997924805, 'postprocess': 0.5724430084228516},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 49,  55,  50],
         [  6,  12,   7],
         [  8,  14,   9],
         ...,
         [ 32,  42,  36],
         [ 29,  41,  35],
         [ 31,  43,  37]],
 
        [[ 47,  53,  48],
         [  5,  11,   6],
         [  7,  13,   8],
         ...,
         [ 26,  36,  30],
         [ 24,  36,  30],
         [ 26,  38,  32]],
 
        [[ 43,  49,  44],
         [  2,   8,   3],
         [  6,  12,   7],
         ...,
         [ 22,  32,  26],
         [ 17,  29,  23],
         [ 18,  30,  24]],
 
        ...,
 
        [[103, 101, 101],
         [ 91,  89,  89],
         [ 94,  92,  92],
         ...,
         [ 32,  30,  30],
         [ 32,  27,  28],
         [ 27,  22,  23]],
 
        [[ 97,  95,  95],
         [ 98,  96,  96],
         [109, 107, 107],
         ...,
         [ 29,  27,  27],
         [ 29,  24,  25],
         [ 22,  17,  18]],
 
        [[ 97,  95,  95],
         [106, 104, 104],
         [123, 121, 121],
         ...,
         [ 25,  23,  23],
         [ 26,  21,  22],
         [ 19,  14,  15]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.216b82e37fe7bf7ace28e129f406915c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5304088592529297, 'inference': 8.217811584472656, 'postprocess': 0.37789344787597656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.eab223bbca50b3ff5899899213a6292d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4448165893554688, 'inference': 7.465362548828125, 'postprocess': 0.32782554626464844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        ...,
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-143-_jpg.rf.f94e3b194754043332e4361c80e7d3db.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6336441040039062, 'inference': 7.569551467895508, 'postprocess': 0.35119056701660156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[229, 219, 219],
         [229, 219, 219],
         [229, 219, 219],
         ...,
         [ 22,  32,  26],
         [108, 118, 112],
         [211, 221, 215]],
 
        [[229, 219, 219],
         [229, 219, 219],
         [229, 219, 219],
         ...,
         [ 25,  35,  29],
         [150, 160, 154],
         [189, 199, 193]],
 
        [[229, 219, 219],
         [229, 219, 219],
         [229, 219, 219],
         ...,
         [ 34,  44,  38],
         [143, 153, 147],
         [154, 164, 158]],
 
        ...,
 
        [[125, 128, 133],
         [123, 126, 131],
         [122, 125, 130],
         ...,
         [ 92, 101, 111],
         [ 91, 100, 110],
         [ 91, 100, 110]],
 
        [[126, 129, 134],
         [126, 129, 134],
         [126, 129, 134],
         ...,
         [ 93, 102, 112],
         [ 92, 101, 111],
         [ 92, 101, 111]],
 
        [[128, 131, 136],
         [128, 131, 136],
         [129, 132, 137],
         ...,
         [ 93, 102, 112],
         [ 92, 101, 111],
         [ 92, 101, 111]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.01b4f283d7eaa74981edcc0259ef43cb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2590885162353516, 'inference': 7.780790328979492, 'postprocess': 0.7460117340087891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        ...,
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.8c8e224f08327d871ec0791f80a0d43a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.508951187133789, 'inference': 7.7972412109375, 'postprocess': 0.34737586975097656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        ...,
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-145-_jpg.rf.ea068320394add8a6ff90b4396b79923.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7209053039550781, 'inference': 8.784294128417969, 'postprocess': 0.324249267578125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.05122d9316fa0be439f878d8aa337d3d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4264583587646484, 'inference': 8.350849151611328, 'postprocess': 0.3783702850341797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 73,  70,  66],
         [ 57,  54,  50],
         [ 50,  47,  43],
         ...,
         [238, 238, 238],
         [237, 237, 237],
         [233, 233, 233]],
 
        [[ 63,  60,  56],
         [ 54,  51,  47],
         [ 52,  49,  45],
         ...,
         [235, 235, 235],
         [237, 237, 237],
         [231, 231, 231]],
 
        [[ 55,  50,  47],
         [ 56,  51,  48],
         [ 60,  55,  52],
         ...,
         [231, 231, 231],
         [235, 235, 235],
         [231, 231, 231]],
 
        ...,
 
        [[ 20,  23,  28],
         [ 45,  48,  53],
         [ 49,  52,  57],
         ...,
         [ 92, 101, 104],
         [ 80,  89,  92],
         [ 58,  67,  70]],
 
        [[ 45,  48,  53],
         [ 74,  77,  82],
         [ 71,  74,  79],
         ...,
         [ 99, 108, 111],
         [ 76,  85,  88],
         [ 55,  64,  67]],
 
        [[ 49,  52,  57],
         [ 79,  82,  87],
         [ 74,  77,  82],
         ...,
         [ 88,  97, 100],
         [ 70,  79,  82],
         [ 59,  68,  71]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.18a3fc9b3f915028b7246fba6b56fd11.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5714168548583984, 'inference': 10.450363159179688, 'postprocess': 0.3197193145751953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-146-_jpg.rf.6d367895786517cfe865fb065be076a5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3570785522460938, 'inference': 7.776498794555664, 'postprocess': 0.3790855407714844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 48,  58,  68],
         [ 57,  67,  77],
         [ 59,  69,  79],
         ...,
         [205, 211, 216],
         [209, 213, 218],
         [212, 216, 221]],
 
        [[ 44,  54,  64],
         [ 57,  67,  77],
         [ 58,  68,  78],
         ...,
         [205, 211, 216],
         [208, 212, 217],
         [210, 214, 219]],
 
        [[ 39,  51,  61],
         [ 56,  68,  78],
         [ 56,  68,  78],
         ...,
         [208, 213, 216],
         [209, 212, 216],
         [209, 212, 216]],
 
        ...,
 
        [[ 88,  99, 103],
         [ 82,  93,  97],
         [ 77,  88,  92],
         ...,
         [ 65,  76,  84],
         [ 61,  72,  80],
         [ 56,  67,  75]],
 
        [[108, 119, 123],
         [ 97, 108, 112],
         [ 87,  98, 102],
         ...,
         [ 64,  75,  83],
         [ 56,  67,  75],
         [ 47,  58,  66]],
 
        [[114, 125, 129],
         [102, 113, 117],
         [ 92, 103, 107],
         ...,
         [ 68,  79,  87],
         [ 59,  70,  78],
         [ 48,  59,  67]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.0f296124b79e86f38cda27b6fe05d742.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5397071838378906, 'inference': 9.031057357788086, 'postprocess': 0.4608631134033203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [2, 2, 2]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 1, 2],
         [0, 0, 1],
         [0, 0, 1]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.890438ae2f4d1bb94198abdd6c181ec8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3511180877685547, 'inference': 8.278846740722656, 'postprocess': 0.4012584686279297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-147-_jpg.rf.a31a26433609129cbb67d23fcb851296.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5206336975097656, 'inference': 7.9193115234375, 'postprocess': 0.3859996795654297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[51, 51, 51],
         [51, 51, 51],
         [51, 51, 51],
         ...,
         [51, 51, 51],
         [51, 51, 51],
         [51, 51, 51]],
 
        [[51, 51, 51],
         [51, 51, 51],
         [51, 51, 51],
         ...,
         [51, 51, 51],
         [51, 51, 51],
         [51, 51, 51]],
 
        [[51, 51, 51],
         [51, 51, 51],
         [51, 51, 51],
         ...,
         [51, 51, 51],
         [51, 51, 51],
         [51, 51, 51]],
 
        ...,
 
        [[51, 51, 51],
         [51, 51, 51],
         [51, 51, 51],
         ...,
         [81, 82, 86],
         [77, 78, 82],
         [75, 76, 80]],
 
        [[51, 51, 51],
         [51, 51, 51],
         [51, 51, 51],
         ...,
         [67, 68, 72],
         [65, 66, 70],
         [64, 65, 69]],
 
        [[51, 51, 51],
         [51, 51, 51],
         [51, 51, 51],
         ...,
         [50, 51, 55],
         [50, 51, 55],
         [49, 50, 54]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.5a781d389cff26a6e2ee08ce9b0498e7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4805793762207031, 'inference': 8.026599884033203, 'postprocess': 0.5323886871337891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.8e92fc1a329453e782f06e741d1fc52f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4276504516601562, 'inference': 7.710456848144531, 'postprocess': 0.4203319549560547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[245, 240, 241],
         [244, 239, 240],
         [243, 238, 239],
         ...,
         [159, 142, 139],
         [160, 143, 140],
         [160, 143, 140]],
 
        [[244, 239, 240],
         [244, 239, 240],
         [242, 237, 238],
         ...,
         [160, 143, 140],
         [160, 143, 140],
         [161, 144, 141]],
 
        [[243, 238, 239],
         [242, 237, 238],
         [241, 236, 237],
         ...,
         [160, 143, 140],
         [160, 143, 140],
         [161, 144, 141]],
 
        ...,
 
        [[  5,   4,   6],
         [  4,   3,   5],
         [  5,   4,   6],
         ...,
         [ 16,  19,  23],
         [ 15,  18,  22],
         [ 15,  18,  22]],
 
        [[  5,   4,   6],
         [  4,   3,   5],
         [  5,   4,   6],
         ...,
         [ 16,  19,  23],
         [ 16,  19,  23],
         [ 16,  19,  23]],
 
        [[  5,   4,   6],
         [  5,   4,   6],
         [  6,   5,   7],
         ...,
         [ 17,  20,  24],
         [ 16,  19,  23],
         [ 16,  19,  23]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-148-_jpg.rf.e2bb2aecbf0577a45e672425acfed876.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5594959259033203, 'inference': 8.394002914428711, 'postprocess': 0.9663105010986328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.a45f79f8033191bd09e9ef31736ca58e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4750957489013672, 'inference': 8.380889892578125, 'postprocess': 0.6260871887207031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[179, 179, 179],
         [170, 170, 170],
         [169, 169, 169],
         ...,
         [211, 201, 194],
         [209, 197, 191],
         [221, 210, 202]],
 
        [[160, 160, 160],
         [163, 163, 163],
         [164, 164, 164],
         ...,
         [212, 202, 195],
         [208, 196, 190],
         [217, 206, 198]],
 
        [[157, 157, 157],
         [173, 173, 173],
         [181, 181, 181],
         ...,
         [214, 204, 197],
         [207, 195, 189],
         [213, 202, 194]],
 
        ...,
 
        [[181, 182, 180],
         [176, 177, 175],
         [172, 170, 169],
         ...,
         [195, 183, 177],
         [197, 186, 178],
         [190, 179, 171]],
 
        [[183, 186, 184],
         [187, 188, 186],
         [186, 184, 183],
         ...,
         [195, 183, 177],
         [198, 187, 179],
         [187, 176, 168]],
 
        [[187, 190, 188],
         [199, 202, 200],
         [208, 206, 205],
         ...,
         [195, 183, 177],
         [200, 189, 181],
         [187, 176, 168]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.c349f70d3d136c391a0458b64dd56ebe.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7015933990478516, 'inference': 8.023500442504883, 'postprocess': 0.3998279571533203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [202, 200, 200],
         [215, 214, 216],
         [146, 145, 147]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [202, 200, 200],
         [213, 212, 214],
         [142, 141, 143]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [202, 200, 200],
         [211, 210, 212],
         [137, 136, 138]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-149-_jpg.rf.e58bb252f96f5f83d1d3290b4e6b8041.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6536712646484375, 'inference': 8.051872253417969, 'postprocess': 0.34999847412109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[7, 7, 7],
         [7, 7, 7],
         [7, 7, 7],
         ...,
         [7, 7, 7],
         [7, 7, 7],
         [7, 7, 7]],
 
        [[7, 7, 7],
         [7, 7, 7],
         [7, 7, 7],
         ...,
         [7, 7, 7],
         [7, 7, 7],
         [7, 7, 7]],
 
        [[7, 7, 7],
         [7, 7, 7],
         [7, 7, 7],
         ...,
         [7, 7, 7],
         [7, 7, 7],
         [7, 7, 7]],
 
        ...,
 
        [[7, 7, 7],
         [7, 7, 7],
         [7, 7, 7],
         ...,
         [7, 7, 7],
         [7, 7, 7],
         [7, 7, 7]],
 
        [[7, 7, 7],
         [7, 7, 7],
         [7, 7, 7],
         ...,
         [7, 7, 7],
         [7, 7, 7],
         [7, 7, 7]],
 
        [[7, 7, 7],
         [7, 7, 7],
         [7, 7, 7],
         ...,
         [7, 7, 7],
         [7, 7, 7],
         [7, 7, 7]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.390f967469ceb20da60cbb99af7e2c16.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3985633850097656, 'inference': 7.643222808837891, 'postprocess': 0.34117698669433594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        ...,
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.5331a19ad3f6b2b37894ae4f0072cea0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7883777618408203, 'inference': 10.208368301391602, 'postprocess': 0.43320655822753906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 89, 100, 130],
         [104, 116, 144],
         [126, 138, 166],
         ...,
         [188, 183, 185],
         [160, 155, 157],
         [176, 171, 173]],
 
        [[ 57,  67,  97],
         [ 65,  76, 104],
         [ 74,  85, 113],
         ...,
         [117, 112, 114],
         [133, 128, 130],
         [186, 181, 183]],
 
        [[ 71,  79, 109],
         [ 74,  82, 111],
         [ 79,  85, 114],
         ...,
         [143, 138, 140],
         [162, 157, 159],
         [135, 130, 132]],
 
        ...,
 
        [[ 82,  81,  85],
         [ 44,  43,  47],
         [ 37,  36,  40],
         ...,
         [  6,  14,  21],
         [  0,   8,  15],
         [  3,  11,  18]],
 
        [[ 52,  51,  55],
         [ 48,  47,  51],
         [ 75,  74,  78],
         ...,
         [ 33,  41,  48],
         [ 16,  24,  31],
         [ 25,  33,  40]],
 
        [[ 55,  54,  58],
         [ 49,  48,  52],
         [ 72,  71,  75],
         ...,
         [ 37,  45,  52],
         [ 32,  40,  47],
         [ 46,  54,  61]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-15-_jpg.rf.988cf6bc7c8911ed0169be801328edb7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4684200286865234, 'inference': 7.699012756347656, 'postprocess': 0.396728515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        ...,
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.0f181e46348e6b83b3a218d5ea72eef2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.611948013305664, 'inference': 7.906675338745117, 'postprocess': 0.5042552947998047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[116, 128, 130],
         [117, 129, 131],
         [ 67,  79,  83],
         ...,
         [ 55,  47,  40],
         [ 68,  62,  57],
         [ 69,  63,  58]],
 
        [[119, 131, 133],
         [117, 129, 131],
         [ 64,  76,  80],
         ...,
         [ 51,  45,  40],
         [ 65,  59,  54],
         [ 63,  59,  54]],
 
        [[120, 132, 134],
         [116, 128, 130],
         [ 61,  73,  77],
         ...,
         [ 53,  50,  46],
         [ 67,  64,  60],
         [ 67,  64,  60]],
 
        ...,
 
        [[134, 160, 176],
         [130, 156, 172],
         [123, 152, 167],
         ...,
         [152, 152, 140],
         [147, 147, 135],
         [149, 149, 137]],
 
        [[135, 161, 177],
         [130, 156, 172],
         [123, 152, 167],
         ...,
         [152, 152, 140],
         [149, 149, 137],
         [153, 153, 141]],
 
        [[134, 160, 176],
         [130, 156, 172],
         [123, 152, 167],
         ...,
         [151, 151, 139],
         [149, 149, 137],
         [156, 156, 144]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.80838b8e9f59a59d85e9727727b31fd7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4259815216064453, 'inference': 7.746696472167969, 'postprocess': 0.3409385681152344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        ...,
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [226, 223, 218],
         [225, 222, 217],
         [224, 221, 216]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [224, 221, 216],
         [223, 220, 215],
         [221, 218, 213]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [222, 219, 214],
         [220, 217, 212],
         [218, 215, 210]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-150-_jpg.rf.e47d187e86dd6eb504660921449a7883.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.77001953125, 'inference': 7.759809494018555, 'postprocess': 1.0428428649902344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 88,  85,  81],
         [ 90,  89,  85],
         [ 96,  94,  94],
         ...,
         [ 88,  88,  88],
         [ 88,  88,  88],
         [ 88,  88,  88]],
 
        [[ 90,  87,  83],
         [ 90,  89,  85],
         [ 93,  91,  91],
         ...,
         [ 88,  88,  88],
         [ 88,  88,  88],
         [ 88,  88,  88]],
 
        [[ 92,  89,  85],
         [ 90,  89,  85],
         [ 91,  89,  89],
         ...,
         [ 88,  88,  88],
         [ 88,  88,  88],
         [ 88,  88,  88]],
 
        ...,
 
        [[ 92,  87,  86],
         [ 93,  89,  88],
         [ 93,  88,  89],
         ...,
         [197, 208, 228],
         [196, 207, 229],
         [167, 178, 200]],
 
        [[ 95,  90,  89],
         [ 93,  89,  88],
         [ 93,  89,  88],
         ...,
         [192, 203, 223],
         [191, 202, 224],
         [163, 174, 196]],
 
        [[ 91,  86,  85],
         [ 89,  85,  84],
         [ 91,  87,  86],
         ...,
         [190, 201, 221],
         [190, 201, 223],
         [163, 174, 196]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.61b165d52cdeea1e1a674f2e8e3912d5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.756906509399414, 'inference': 10.006427764892578, 'postprocess': 0.7970333099365234},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 0, 0],
         [5, 0, 1],
         [5, 0, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 0],
         [4, 0, 0],
         [2, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 1],
         [3, 0, 2],
         [2, 1, 3]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.c2e6d6e3806754b1713a36a954367a60.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4925003051757812, 'inference': 7.6961517333984375, 'postprocess': 0.34356117248535156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 66,  76,  86],
         [ 67,  77,  87],
         [ 68,  78,  88],
         ...,
         [ 97, 135, 147],
         [102, 137, 150],
         [ 83, 118, 131]],
 
        [[ 66,  76,  86],
         [ 65,  75,  85],
         [ 63,  73,  83],
         ...,
         [ 97, 135, 147],
         [101, 136, 149],
         [ 81, 116, 129]],
 
        [[ 71,  81,  91],
         [ 69,  79,  89],
         [ 64,  74,  84],
         ...,
         [ 97, 135, 147],
         [ 98, 133, 146],
         [ 78, 113, 126]],
 
        ...,
 
        [[110, 131, 169],
         [109, 130, 168],
         [110, 129, 167],
         ...,
         [100, 116, 129],
         [ 90, 106, 119],
         [ 84, 100, 113]],
 
        [[110, 131, 169],
         [111, 132, 170],
         [113, 132, 170],
         ...,
         [104, 121, 134],
         [ 94, 111, 124],
         [ 87, 104, 117]],
 
        [[109, 130, 168],
         [112, 133, 171],
         [114, 133, 171],
         ...,
         [107, 124, 137],
         [ 97, 114, 127],
         [ 89, 106, 119]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-153-_jpg.rf.f7752000f79cfa2acc35f9a7149ee56d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8944740295410156, 'inference': 10.451793670654297, 'postprocess': 0.33926963806152344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.424bbc028685f5de7e9cc866eb988b1e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2974739074707031, 'inference': 8.774995803833008, 'postprocess': 0.3447532653808594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        ...,
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.a0f2c54c02aec34c0ca6138b4635c155.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9841194152832031, 'inference': 8.65936279296875, 'postprocess': 0.3504753112792969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 22,  19,  11],
         [ 14,  11,   3],
         [ 19,  14,  11],
         ...,
         [117, 100, 121],
         [128, 105, 127],
         [137, 110, 130]],
 
        [[ 22,  19,  11],
         [ 18,  15,   7],
         [ 21,  16,  13],
         ...,
         [123, 109, 127],
         [135, 113, 132],
         [140, 116, 134]],
 
        [[ 22,  19,  11],
         [ 22,  19,  11],
         [ 23,  18,  15],
         ...,
         [126, 116, 129],
         [133, 116, 130],
         [138, 118, 131]],
 
        ...,
 
        [[ 45,  42,  38],
         [ 61,  57,  56],
         [ 60,  55,  57],
         ...,
         [ 87,  74,  72],
         [ 97,  84,  82],
         [107,  94,  92]],
 
        [[ 41,  37,  36],
         [ 61,  56,  57],
         [ 62,  56,  61],
         ...,
         [ 85,  72,  70],
         [ 96,  83,  81],
         [104,  91,  89]],
 
        [[ 40,  36,  35],
         [ 62,  57,  58],
         [ 64,  58,  63],
         ...,
         [ 82,  69,  67],
         [ 95,  82,  80],
         [103,  90,  88]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-155-_jpg.rf.ba6a2e4e1abc6f5aa893e46932e4df4f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8091201782226562, 'inference': 8.446455001831055, 'postprocess': 0.3781318664550781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[126, 108,  91],
         [123, 106,  87],
         [124, 102,  84],
         ...,
         [ 99,  89,  82],
         [102,  92,  85],
         [104,  94,  87]],
 
        [[125, 106,  91],
         [122, 104,  87],
         [121, 101,  83],
         ...,
         [ 97,  87,  80],
         [100,  90,  83],
         [102,  92,  85]],
 
        [[115,  98,  85],
         [112,  95,  82],
         [111,  93,  76],
         ...,
         [ 95,  85,  78],
         [ 97,  87,  80],
         [ 99,  89,  82]],
 
        ...,
 
        [[118, 118, 118],
         [ 79,  79,  79],
         [ 61,  61,  61],
         ...,
         [106, 101, 102],
         [102,  97,  98],
         [104,  99, 100]],
 
        [[137, 137, 137],
         [ 99,  99,  99],
         [ 78,  78,  78],
         ...,
         [101,  96,  97],
         [ 97,  92,  93],
         [ 99,  94,  95]],
 
        [[146, 146, 146],
         [103, 103, 103],
         [ 73,  73,  73],
         ...,
         [ 99,  94,  95],
         [ 94,  89,  90],
         [ 96,  91,  92]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.3b94cd14bdbf92f4cd57497def72b167.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3613700866699219, 'inference': 7.740974426269531, 'postprocess': 0.36644935607910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.9e41f44435259c8fa4baadcdbc5f0f7f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 3.215789794921875, 'inference': 9.617805480957031, 'postprocess': 0.3502368927001953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-156-_jpg.rf.a3c099766b4b6cb736f460bf8f3b8377.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3232231140136719, 'inference': 7.886409759521484, 'postprocess': 0.3497600555419922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[254, 255, 205],
         [254, 255, 205],
         [254, 255, 205],
         ...,
         [255, 255, 227],
         [255, 255, 227],
         [255, 255, 227]],
 
        [[255, 255, 206],
         [255, 255, 206],
         [255, 255, 206],
         ...,
         [255, 255, 227],
         [255, 255, 227],
         [255, 255, 227]],
 
        [[255, 255, 207],
         [255, 255, 207],
         [255, 255, 207],
         ...,
         [255, 255, 227],
         [255, 255, 227],
         [255, 255, 227]],
 
        ...,
 
        [[ 67,  93, 107],
         [ 74, 100, 114],
         [ 74, 100, 114],
         ...,
         [117, 105,  99],
         [109,  98,  94],
         [117, 106, 102]],
 
        [[ 79, 105, 119],
         [ 85, 111, 125],
         [ 85, 111, 125],
         ...,
         [124, 112, 106],
         [110,  99,  95],
         [121, 110, 106]],
 
        [[ 90, 116, 130],
         [ 95, 121, 135],
         [ 93, 119, 133],
         ...,
         [140, 128, 122],
         [125, 114, 110],
         [133, 122, 118]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.21962dcea10b8f2209ae3fdb9797b6c6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8537044525146484, 'inference': 8.550167083740234, 'postprocess': 0.4374980926513672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 3],
         [0, 0, 3],
         [2, 0, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 3],
         [0, 0, 3],
         [2, 0, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 3],
         [0, 0, 3],
         [2, 0, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.7c67c2036a30fd93eed5361cc2f4f1c8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4233589172363281, 'inference': 9.150505065917969, 'postprocess': 0.3838539123535156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-158-_jpg.rf.bb32e2985b2c29e77029a0452ab20bac.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7194747924804688, 'inference': 7.860422134399414, 'postprocess': 0.43892860412597656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 3],
         [0, 0, 3],
         [0, 0, 3]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 1],
         [0, 0, 1],
         [0, 0, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 0],
         [4, 0, 0],
         [4, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.12b33adab537f585de7b3d85b848618e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7442703247070312, 'inference': 7.884025573730469, 'postprocess': 0.3895759582519531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.1ed8251ec141db216fc5041d7838f5e1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4908313751220703, 'inference': 9.786367416381836, 'postprocess': 0.3752708435058594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 77, 103, 133],
         [ 72,  98, 128],
         [ 74,  98, 126],
         ...,
         [ 16,  16,  16],
         [ 54,  52,  52],
         [ 46,  44,  44]],
 
        [[ 87, 113, 143],
         [ 80, 106, 136],
         [ 78, 102, 130],
         ...,
         [ 45,  45,  45],
         [ 70,  68,  68],
         [ 53,  51,  51]],
 
        [[ 85, 109, 139],
         [ 81, 105, 135],
         [ 81, 103, 131],
         ...,
         [ 35,  35,  35],
         [ 44,  42,  42],
         [ 33,  31,  31]],
 
        ...,
 
        [[125, 123, 123],
         [ 96,  94,  94],
         [ 72,  70,  70],
         ...,
         [ 44,  45,  49],
         [ 62,  63,  67],
         [ 76,  77,  81]],
 
        [[ 83,  81,  81],
         [ 42,  40,  40],
         [ 26,  24,  24],
         ...,
         [ 67,  70,  75],
         [ 87,  90,  95],
         [100, 103, 108]],
 
        [[ 48,  46,  46],
         [ 17,  15,  15],
         [ 28,  26,  26],
         ...,
         [ 71,  74,  79],
         [ 98, 101, 106],
         [133, 136, 141]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-159-_jpg.rf.2dcc275359fb301602e6957a56e13dc7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6894340515136719, 'inference': 8.673667907714844, 'postprocess': 0.7305145263671875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 50,  56,  61],
         [ 73,  79,  84],
         [ 86,  90,  95],
         ...,
         [ 58,  62,  80],
         [ 60,  64,  83],
         [ 61,  65,  84]],
 
        [[ 52,  58,  63],
         [ 70,  76,  81],
         [ 78,  82,  87],
         ...,
         [ 58,  62,  80],
         [ 59,  63,  82],
         [ 59,  63,  82]],
 
        [[ 53,  59,  66],
         [ 63,  69,  76],
         [ 63,  69,  76],
         ...,
         [ 56,  60,  78],
         [ 56,  60,  79],
         [ 57,  61,  80]],
 
        ...,
 
        [[210, 208, 208],
         [211, 209, 209],
         [211, 209, 209],
         ...,
         [ 43,  43,  43],
         [ 50,  50,  50],
         [ 49,  49,  49]],
 
        [[212, 210, 210],
         [210, 208, 208],
         [207, 205, 205],
         ...,
         [ 51,  51,  51],
         [ 57,  57,  57],
         [ 55,  55,  55]],
 
        [[214, 212, 212],
         [209, 207, 207],
         [204, 202, 202],
         ...,
         [ 50,  50,  50],
         [ 55,  55,  55],
         [ 51,  51,  51]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.0d031ce3c207297977b4c60a77d278da.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.489400863647461, 'inference': 8.345842361450195, 'postprocess': 0.4470348358154297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.47407d69db6694be4d9fa4b3c032d235.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.64794921875, 'inference': 8.104801177978516, 'postprocess': 0.3669261932373047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-16-_jpg.rf.946ec84ddfa3a53b7b2d407349f08e62.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 3.9844512939453125, 'inference': 8.007526397705078, 'postprocess': 0.74005126953125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.046afe1498d1564227421d54b7abdcaa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2903213500976562, 'inference': 8.210182189941406, 'postprocess': 0.75531005859375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.8ac19617548efc70a9281d8dc3794dfd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7011165618896484, 'inference': 8.312702178955078, 'postprocess': 0.4851818084716797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 34,  45,  65],
         [ 33,  44,  64],
         [ 30,  44,  62],
         ...,
         [ 27,  34,  37],
         [ 23,  33,  33],
         [ 22,  32,  32]],
 
        [[ 29,  43,  62],
         [ 29,  43,  62],
         [ 31,  45,  63],
         ...,
         [ 26,  33,  36],
         [ 22,  32,  32],
         [ 21,  31,  31]],
 
        [[ 26,  41,  60],
         [ 26,  43,  62],
         [ 29,  47,  64],
         ...,
         [ 24,  31,  34],
         [ 20,  29,  32],
         [ 19,  28,  31]],
 
        ...,
 
        [[ 98, 112, 108],
         [ 98, 112, 108],
         [ 99, 113, 109],
         ...,
         [  5,   6,  10],
         [  4,   5,   9],
         [  3,   4,   8]],
 
        [[ 98, 112, 108],
         [ 98, 112, 108],
         [ 98, 112, 108],
         ...,
         [  4,   4,  10],
         [  3,   4,   8],
         [  2,   3,   7]],
 
        [[ 97, 111, 107],
         [ 98, 112, 108],
         [ 98, 112, 108],
         ...,
         [  3,   3,   9],
         [  3,   4,   8],
         [  2,   3,   7]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-160-_jpg.rf.acf7ae50b1e59b9e6e4bbf150e8055a9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6696453094482422, 'inference': 14.004707336425781, 'postprocess': 0.6010532379150391},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.69c191909f6cc1a946105b08efab6224.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8239021301269531, 'inference': 8.32223892211914, 'postprocess': 0.392913818359375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 34,  38,  43],
         [ 34,  38,  43],
         [ 34,  38,  43],
         ...,
         [  7,   8,   6],
         [  4,   5,   3],
         [ 18,  19,  17]],
 
        [[ 33,  37,  42],
         [ 33,  37,  42],
         [ 33,  37,  42],
         ...,
         [  8,   9,   7],
         [ 12,  13,  11],
         [ 47,  48,  46]],
 
        [[ 32,  36,  41],
         [ 32,  36,  41],
         [ 32,  36,  41],
         ...,
         [ 11,  12,  10],
         [ 29,  30,  28],
         [100, 101,  99]],
 
        ...,
 
        [[103,  86,  90],
         [113,  99, 101],
         [109,  92,  96],
         ...,
         [ 85,  88,  96],
         [ 84,  87,  95],
         [ 81,  84,  92]],
 
        [[108,  89,  92],
         [115,  99, 100],
         [113,  94,  97],
         ...,
         [ 89,  92, 100],
         [ 86,  89,  97],
         [ 81,  84,  92]],
 
        [[100,  82,  83],
         [111,  93,  94],
         [118, 100, 101],
         ...,
         [ 94,  97, 105],
         [ 87,  90,  98],
         [ 80,  83,  91]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.7352a1a695f0ce198ca67b3f1c186fd6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6331672668457031, 'inference': 8.669614791870117, 'postprocess': 0.3800392150878906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-162-_jpg.rf.f847c9d3c6c04f210e5e2f3e8eb444d4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6217231750488281, 'inference': 14.457941055297852, 'postprocess': 0.37407875061035156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.2677c0fd3f9bec65c04ee82b7d8a000a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.667022705078125, 'inference': 8.053064346313477, 'postprocess': 0.3829002380371094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[58, 58, 58],
         [58, 58, 58],
         [58, 58, 58],
         ...,
         [61, 61, 61],
         [59, 59, 59],
         [56, 56, 56]],
 
        [[58, 58, 58],
         [58, 58, 58],
         [58, 58, 58],
         ...,
         [57, 57, 57],
         [57, 57, 57],
         [56, 56, 56]],
 
        [[58, 58, 58],
         [58, 58, 58],
         [58, 58, 58],
         ...,
         [58, 58, 58],
         [59, 59, 59],
         [60, 60, 60]],
 
        ...,
 
        [[58, 58, 58],
         [58, 58, 58],
         [58, 58, 58],
         ...,
         [58, 58, 58],
         [58, 58, 58],
         [58, 58, 58]],
 
        [[58, 58, 58],
         [58, 58, 58],
         [58, 58, 58],
         ...,
         [58, 58, 58],
         [58, 58, 58],
         [58, 58, 58]],
 
        [[58, 58, 58],
         [58, 58, 58],
         [58, 58, 58],
         ...,
         [58, 58, 58],
         [58, 58, 58],
         [58, 58, 58]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.75e0f6d481468e27710dc5bec3a78ea2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5006065368652344, 'inference': 8.427143096923828, 'postprocess': 0.7297992706298828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 96,  96,  96],
         [ 98,  98,  98],
         [101, 101, 101],
         ...,
         [113, 113, 113],
         [112, 112, 112],
         [111, 111, 111]],
 
        [[ 98,  98,  98],
         [100, 100, 100],
         [103, 103, 103],
         ...,
         [114, 114, 114],
         [112, 112, 112],
         [112, 112, 112]],
 
        [[ 98,  98,  98],
         [ 99,  99,  99],
         [101, 101, 101],
         ...,
         [114, 114, 114],
         [113, 113, 113],
         [112, 112, 112]],
 
        ...,
 
        [[ 65,  65,  65],
         [ 68,  68,  68],
         [ 60,  60,  60],
         ...,
         [ 72,  72,  72],
         [ 71,  71,  71],
         [ 71,  71,  71]],
 
        [[ 64,  64,  64],
         [ 68,  68,  68],
         [ 59,  59,  59],
         ...,
         [ 71,  71,  71],
         [ 71,  71,  71],
         [ 70,  70,  70]],
 
        [[ 63,  63,  63],
         [ 67,  67,  67],
         [ 60,  60,  60],
         ...,
         [ 72,  72,  72],
         [ 72,  72,  72],
         [ 72,  72,  72]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-163-_jpg.rf.d56b832482912f0e78e017e95747fdea.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7552375793457031, 'inference': 8.580684661865234, 'postprocess': 0.4324913024902344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.31facecf28467c64106a888177c293c4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5349388122558594, 'inference': 8.544206619262695, 'postprocess': 0.3495216369628906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.34bf0aa5f308144c68fb1b5f9a1b9423.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.699209213256836, 'inference': 8.096456527709961, 'postprocess': 0.7865428924560547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 24,  28,  39],
         [ 37,  41,  52],
         [ 66,  70,  81],
         ...,
         [ 45,  46,  50],
         [ 26,  27,  31],
         [ 11,  12,  16]],
 
        [[ 24,  28,  39],
         [ 37,  41,  52],
         [ 66,  70,  81],
         ...,
         [ 45,  46,  50],
         [ 26,  27,  31],
         [ 12,  13,  17]],
 
        [[ 23,  26,  40],
         [ 37,  40,  54],
         [ 66,  69,  83],
         ...,
         [ 44,  45,  49],
         [ 27,  28,  32],
         [ 14,  15,  19]],
 
        ...,
 
        [[ 28,  29,  33],
         [ 47,  48,  52],
         [ 92,  93,  97],
         ...,
         [100, 108, 121],
         [ 59,  67,  80],
         [ 37,  45,  58]],
 
        [[ 28,  29,  33],
         [ 47,  48,  52],
         [ 91,  92,  96],
         ...,
         [101, 109, 122],
         [ 61,  69,  82],
         [ 38,  46,  59]],
 
        [[ 27,  28,  32],
         [ 46,  47,  51],
         [ 91,  92,  96],
         ...,
         [101, 109, 122],
         [ 60,  68,  81],
         [ 37,  45,  58]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-164-_jpg.rf.9248a616cb0e3d24aa2bb44288e019ce.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8985271453857422, 'inference': 8.172988891601562, 'postprocess': 0.3502368927001953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[140, 138, 138],
         [140, 138, 138],
         [139, 137, 137],
         ...,
         [132, 130, 130],
         [135, 133, 133],
         [141, 139, 139]],
 
        [[138, 136, 136],
         [138, 136, 136],
         [139, 137, 137],
         ...,
         [131, 129, 129],
         [133, 131, 131],
         [138, 136, 136]],
 
        [[137, 135, 135],
         [137, 135, 135],
         [137, 135, 135],
         ...,
         [129, 127, 127],
         [131, 129, 129],
         [135, 133, 133]],
 
        ...,
 
        [[129, 125, 124],
         [134, 130, 129],
         [138, 134, 133],
         ...,
         [118, 118, 118],
         [121, 121, 121],
         [124, 124, 124]],
 
        [[130, 125, 122],
         [134, 129, 126],
         [137, 134, 130],
         ...,
         [116, 116, 116],
         [120, 120, 120],
         [124, 124, 124]],
 
        [[131, 126, 123],
         [134, 129, 126],
         [137, 134, 130],
         ...,
         [115, 115, 115],
         [119, 119, 119],
         [123, 123, 123]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.2f4d36fff66d603c99b22043abc562ba.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3251304626464844, 'inference': 8.004426956176758, 'postprocess': 0.3371238708496094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  3,   8,   7],
         [  3,   8,   7],
         [  5,   7,   7],
         ...,
         [  7,   7,   7],
         [  7,   7,   7],
         [  7,   7,   7]],
 
        [[  3,   8,   7],
         [  3,   8,   7],
         [  5,   7,   7],
         ...,
         [  7,   7,   7],
         [  7,   7,   7],
         [  7,   7,   7]],
 
        [[  3,   8,   7],
         [  3,   8,   7],
         [  5,   7,   7],
         ...,
         [  7,   7,   7],
         [  7,   7,   7],
         [  7,   7,   7]],
 
        ...,
 
        [[  7,   7,   7],
         [  7,   7,   7],
         [  7,   7,   7],
         ...,
         [155, 155, 155],
         [155, 155, 155],
         [155, 155, 155]],
 
        [[  7,   7,   7],
         [  7,   7,   7],
         [  7,   7,   7],
         ...,
         [160, 160, 160],
         [159, 159, 159],
         [158, 158, 158]],
 
        [[  7,   7,   7],
         [  7,   7,   7],
         [  7,   7,   7],
         ...,
         [162, 162, 162],
         [160, 160, 160],
         [159, 159, 159]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.33cf824f2784fd32a3bb22c67f3fdabc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6906261444091797, 'inference': 8.371353149414062, 'postprocess': 0.7424354553222656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[32, 32, 32],
         [32, 32, 32],
         [32, 32, 32],
         ...,
         [32, 32, 32],
         [32, 32, 32],
         [32, 32, 32]],
 
        [[32, 32, 32],
         [32, 32, 32],
         [32, 32, 32],
         ...,
         [32, 32, 32],
         [32, 32, 32],
         [32, 32, 32]],
 
        [[32, 32, 32],
         [32, 32, 32],
         [32, 32, 32],
         ...,
         [32, 32, 32],
         [32, 32, 32],
         [32, 32, 32]],
 
        ...,
 
        [[32, 32, 32],
         [32, 32, 32],
         [32, 32, 32],
         ...,
         [32, 32, 32],
         [32, 32, 32],
         [32, 32, 32]],
 
        [[32, 32, 32],
         [32, 32, 32],
         [32, 32, 32],
         ...,
         [32, 32, 32],
         [32, 32, 32],
         [32, 32, 32]],
 
        [[32, 32, 32],
         [32, 32, 32],
         [32, 32, 32],
         ...,
         [32, 32, 32],
         [32, 32, 32],
         [32, 32, 32]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-166-_jpg.rf.77f1227905045ad65f8fda0d6427dbe5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3387203216552734, 'inference': 8.165836334228516, 'postprocess': 0.35119056701660156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[255, 255, 255],
         [255, 255, 255],
         [255, 255, 255],
         ...,
         [ 38,  24,  18],
         [ 39,  25,  19],
         [ 40,  26,  20]],
 
        [[255, 255, 255],
         [255, 255, 255],
         [255, 255, 255],
         ...,
         [ 37,  25,  19],
         [ 38,  26,  22],
         [ 39,  27,  21]],
 
        [[255, 255, 255],
         [255, 255, 255],
         [255, 255, 255],
         ...,
         [ 35,  24,  20],
         [ 37,  25,  23],
         [ 38,  27,  23]],
 
        ...,
 
        [[ 83,  69,  51],
         [ 84,  70,  52],
         [ 85,  71,  53],
         ...,
         [ 28,  20,  13],
         [ 28,  20,  13],
         [ 27,  19,  12]],
 
        [[ 85,  71,  53],
         [ 85,  71,  53],
         [ 85,  71,  53],
         ...,
         [ 30,  22,  15],
         [ 28,  20,  13],
         [ 27,  19,  12]],
 
        [[ 85,  71,  53],
         [ 85,  71,  53],
         [ 85,  71,  53],
         ...,
         [ 31,  23,  16],
         [ 29,  21,  14],
         [ 27,  19,  12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.307e87780d9f502b50e422c4a80d38c9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7807483673095703, 'inference': 12.836217880249023, 'postprocess': 0.347137451171875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[8, 0, 0],
         [8, 0, 0],
         [8, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[8, 0, 0],
         [6, 1, 0],
         [8, 0, 0],
         ...,
         [0, 0, 0],
         [1, 1, 1],
         [3, 3, 3]],
 
        [[6, 0, 1],
         [5, 0, 1],
         [7, 1, 2],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [1, 1, 1]],
 
        ...,
 
        [[4, 2, 1],
         [4, 2, 1],
         [5, 3, 2],
         ...,
         [0, 0, 0],
         [0, 0, 1],
         [0, 0, 1]],
 
        [[4, 2, 1],
         [4, 2, 1],
         [5, 3, 2],
         ...,
         [0, 0, 0],
         [0, 0, 1],
         [0, 0, 1]],
 
        [[4, 2, 1],
         [4, 2, 1],
         [5, 3, 2],
         ...,
         [0, 0, 0],
         [0, 0, 1],
         [0, 0, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.5d211f0e20e55adab672af34f9df1940.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9030570983886719, 'inference': 8.175134658813477, 'postprocess': 0.3428459167480469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13],
         ...,
         [251, 254, 255],
         [251, 254, 255],
         [251, 254, 255]],
 
        [[ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13],
         ...,
         [251, 254, 255],
         [251, 254, 255],
         [251, 254, 255]],
 
        [[ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13],
         ...,
         [251, 254, 255],
         [251, 254, 255],
         [251, 254, 255]],
 
        ...,
 
        [[ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13],
         ...,
         [ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13]],
 
        [[ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13],
         ...,
         [ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13]],
 
        [[ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13],
         ...,
         [ 13,  13,  13],
         [ 13,  13,  13],
         [ 13,  13,  13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-167-_jpg.rf.f15ca9251a252759a4206b00e88066ea.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3384819030761719, 'inference': 8.48078727722168, 'postprocess': 0.3464221954345703},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        ...,
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.470ca7ba7c3aed3a3ff0ca36725fadb6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7962455749511719, 'inference': 10.352373123168945, 'postprocess': 0.7460117340087891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 73, 194, 204],
         [ 65, 186, 196],
         [ 46, 161, 174],
         ...,
         [ 12,  76,  40],
         [ 18,  87,  50],
         [ 23,  93,  56]],
 
        [[ 78, 190, 202],
         [ 77, 187, 199],
         [ 61, 168, 182],
         ...,
         [ 18,  84,  49],
         [ 21,  91,  55],
         [ 23,  95,  59]],
 
        [[ 56, 150, 163],
         [ 51, 145, 158],
         [ 36, 127, 142],
         ...,
         [ 25,  94,  61],
         [ 16,  92,  58],
         [ 15,  92,  58]],
 
        ...,
 
        [[ 97,  86,  88],
         [ 98,  87,  89],
         [ 96,  85,  87],
         ...,
         [166, 166, 190],
         [167, 168, 189],
         [162, 163, 184]],
 
        [[ 92,  81,  83],
         [ 94,  83,  85],
         [ 95,  84,  86],
         ...,
         [190, 193, 214],
         [193, 196, 217],
         [188, 191, 212]],
 
        [[ 94,  83,  85],
         [ 96,  85,  87],
         [ 97,  86,  88],
         ...,
         [185, 188, 209],
         [186, 189, 210],
         [180, 183, 204]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.ad622f815165a84798a7922e02a02876.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4379024505615234, 'inference': 8.247137069702148, 'postprocess': 0.8590221405029297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-168-_jpg.rf.d6e69d2d4e07bc489d1f95b357e47d26.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6410350799560547, 'inference': 8.038759231567383, 'postprocess': 0.37026405334472656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  8,  14,   9],
         [  8,  14,   9],
         [  8,  14,   9],
         ...,
         [111, 109, 109],
         [113, 111, 111],
         [113, 111, 111]],
 
        [[ 10,  14,   9],
         [ 10,  14,   9],
         [ 10,  14,   9],
         ...,
         [104, 102, 102],
         [103, 101, 101],
         [103, 101, 101]],
 
        [[ 12,  13,  11],
         [ 12,  13,  11],
         [ 12,  13,  11],
         ...,
         [103, 101, 101],
         [ 99,  97,  97],
         [100,  98,  98]],
 
        ...,
 
        [[ 95,  90,  91],
         [ 90,  85,  86],
         [ 85,  80,  81],
         ...,
         [ 72,  88, 125],
         [ 45,  59,  95],
         [ 23,  37,  73]],
 
        [[ 95,  90,  91],
         [ 92,  87,  88],
         [ 89,  84,  85],
         ...,
         [ 86, 100, 142],
         [ 62,  77, 116],
         [  8,  24,  61]],
 
        [[101,  96,  97],
         [100,  95,  96],
         [ 98,  93,  94],
         ...,
         [ 31,  45,  87],
         [ 35,  51,  93],
         [ 38,  55,  94]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.ab0a07cd761c2739c0051926b50b0593.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3346672058105469, 'inference': 8.460760116577148, 'postprocess': 0.3314018249511719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.ce08674b1ae95506239ffe1d5e92d8a1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7096996307373047, 'inference': 8.269071578979492, 'postprocess': 0.39887428283691406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-169-_jpg.rf.f326f486b62b79f5bc791704fabd90e8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7285346984863281, 'inference': 8.109569549560547, 'postprocess': 0.5424022674560547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[140, 124, 108],
         [141, 125, 109],
         [145, 128, 115],
         ...,
         [109,  96,  80],
         [110,  97,  81],
         [108,  95,  79]],
 
        [[142, 126, 110],
         [143, 127, 111],
         [146, 129, 116],
         ...,
         [108,  95,  79],
         [109,  96,  80],
         [107,  94,  78]],
 
        [[145, 129, 113],
         [146, 130, 114],
         [148, 131, 118],
         ...,
         [107,  94,  80],
         [108,  95,  81],
         [106,  93,  79]],
 
        ...,
 
        [[127, 115, 103],
         [116, 104,  92],
         [106,  94,  82],
         ...,
         [111, 109, 108],
         [109, 107, 106],
         [110, 108, 107]],
 
        [[129, 117, 105],
         [120, 108,  96],
         [112, 100,  88],
         ...,
         [111, 109, 108],
         [110, 108, 107],
         [112, 110, 109]],
 
        [[125, 113, 101],
         [119, 107,  95],
         [116, 104,  92],
         ...,
         [111, 109, 108],
         [111, 109, 108],
         [113, 111, 110]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.3571a1273709f941c4936d6ee8b32214.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4472007751464844, 'inference': 8.549213409423828, 'postprocess': 0.4894733428955078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        ...,
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.a8d1a4654900167fc8106a1f6144ceff.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7278194427490234, 'inference': 8.464813232421875, 'postprocess': 0.3306865692138672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-170-_jpg.rf.f6e9c0883eac1443308f4f424ae60db4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4073848724365234, 'inference': 8.277416229248047, 'postprocess': 0.39005279541015625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[79, 81, 82],
         [79, 81, 82],
         [79, 81, 82],
         ...,
         [79, 81, 81],
         [77, 82, 81],
         [77, 82, 81]],
 
        [[79, 81, 82],
         [79, 81, 82],
         [79, 81, 82],
         ...,
         [79, 81, 81],
         [77, 82, 81],
         [77, 82, 81]],
 
        [[81, 81, 81],
         [81, 81, 81],
         [81, 81, 81],
         ...,
         [79, 81, 81],
         [77, 82, 81],
         [77, 82, 81]],
 
        ...,
 
        [[81, 81, 81],
         [81, 81, 81],
         [81, 81, 81],
         ...,
         [80, 78, 78],
         [80, 78, 78],
         [80, 78, 78]],
 
        [[81, 81, 81],
         [81, 81, 81],
         [81, 81, 81],
         ...,
         [86, 84, 84],
         [85, 83, 83],
         [85, 83, 83]],
 
        [[81, 81, 81],
         [81, 81, 81],
         [81, 81, 81],
         ...,
         [84, 82, 82],
         [84, 82, 82],
         [84, 82, 82]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.2de27493e9ea7ae685e6a868e05dff51.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.676797866821289, 'inference': 8.445024490356445, 'postprocess': 0.33783912658691406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 19,   8, 140],
         [ 18,   8, 138],
         [ 15,   5, 135],
         ...,
         [103, 105, 113],
         [ 95,  98, 106],
         [ 74,  80,  87]],
 
        [[ 19,   8, 140],
         [ 18,   8, 138],
         [ 16,   6, 136],
         ...,
         [126, 128, 136],
         [102, 105, 113],
         [ 56,  62,  69]],
 
        [[ 18,   7, 139],
         [ 19,   9, 139],
         [ 17,   7, 137],
         ...,
         [166, 168, 176],
         [136, 139, 147],
         [ 84,  87,  95]],
 
        ...,
 
        [[ 77,  77,  93],
         [ 83,  83,  99],
         [ 83,  83,  99],
         ...,
         [118, 112, 117],
         [117, 107, 113],
         [127, 117, 123]],
 
        [[ 78,  78,  94],
         [ 79,  79,  95],
         [ 67,  67,  83],
         ...,
         [118, 112, 117],
         [120, 110, 116],
         [124, 114, 120]],
 
        [[ 85,  85, 101],
         [ 80,  80,  96],
         [ 57,  57,  73],
         ...,
         [122, 116, 121],
         [123, 113, 119],
         [122, 112, 118]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.a81f6e206e422229e3021b0dfb06752f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7719268798828125, 'inference': 8.544206619262695, 'postprocess': 0.33855438232421875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7],
         ...,
         [ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7]],
 
        [[ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7],
         ...,
         [ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7]],
 
        [[ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7],
         ...,
         [ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7]],
 
        ...,
 
        [[ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7],
         ...,
         [12, 11,  7],
         [11,  9,  8],
         [ 9,  8,  4]],
 
        [[ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7],
         ...,
         [11,  8,  3],
         [ 7,  4,  0],
         [ 4,  1,  0]],
 
        [[ 7,  7,  7],
         [ 7,  7,  7],
         [ 7,  7,  7],
         ...,
         [ 9,  6,  1],
         [13, 10,  5],
         [17, 14,  9]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-171-_jpg.rf.f536cb9ac4138da71c6af4d8a3492050.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3060569763183594, 'inference': 8.351564407348633, 'postprocess': 0.37407875061035156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[211, 197, 179],
         [209, 195, 177],
         [210, 195, 179],
         ...,
         [  0,  45,  36],
         [  0,  39,  32],
         [ 76, 108, 103]],
 
        [[205, 190, 174],
         [203, 188, 172],
         [204, 188, 175],
         ...,
         [ 11,  69,  58],
         [ 16,  58,  51],
         [ 89, 123, 116]],
 
        [[159, 145, 133],
         [157, 143, 131],
         [157, 143, 131],
         ...,
         [ 43, 104,  90],
         [ 40,  85,  76],
         [105, 145, 134]],
 
        ...,
 
        [[120, 122, 123],
         [123, 125, 126],
         [128, 130, 131],
         ...,
         [ 56,  50,  37],
         [ 58,  52,  39],
         [ 60,  54,  41]],
 
        [[124, 126, 127],
         [127, 129, 130],
         [133, 135, 136],
         ...,
         [ 68,  62,  49],
         [ 68,  62,  49],
         [ 69,  63,  50]],
 
        [[124, 126, 127],
         [126, 128, 129],
         [132, 134, 135],
         ...,
         [ 73,  67,  54],
         [ 73,  67,  54],
         [ 72,  66,  53]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.171729c8713c604e4d2371b546dfa09f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7046928405761719, 'inference': 8.136272430419922, 'postprocess': 0.4012584686279297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.96d2ff93572de0ce5bd564113ece7ad0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3642311096191406, 'inference': 8.53586196899414, 'postprocess': 0.45561790466308594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        ...,
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-172-_jpg.rf.b732ca94d029e82283eed3228fae8625.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0148754119873047, 'inference': 8.566617965698242, 'postprocess': 0.33283233642578125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 52,  68,  75],
         [ 64,  80,  87],
         [ 54,  70,  77],
         ...,
         [112, 134, 146],
         [117, 139, 151],
         [122, 144, 156]],
 
        [[ 54,  70,  77],
         [ 62,  78,  85],
         [ 57,  73,  80],
         ...,
         [118, 140, 152],
         [123, 145, 157],
         [128, 150, 162]],
 
        [[ 57,  73,  80],
         [ 64,  80,  87],
         [ 66,  82,  89],
         ...,
         [114, 136, 148],
         [117, 139, 151],
         [124, 146, 158]],
 
        ...,
 
        [[ 47,  57,  67],
         [ 42,  52,  62],
         [ 41,  53,  63],
         ...,
         [117, 134, 147],
         [ 88, 105, 118],
         [ 76,  93, 106]],
 
        [[ 87,  97, 107],
         [ 72,  82,  92],
         [ 46,  58,  68],
         ...,
         [115, 132, 145],
         [ 91, 108, 121],
         [ 76,  93, 106]],
 
        [[ 95, 105, 115],
         [ 90, 100, 110],
         [ 84,  96, 106],
         ...,
         [ 89, 106, 119],
         [ 73,  90, 103],
         [ 59,  76,  89]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.2f427bf4f80837fb0387c3ee0c38e172.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9540786743164062, 'inference': 8.814811706542969, 'postprocess': 0.3407001495361328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        ...,
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.5ec8f9ecd96971def7f6e5074c5e0373.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3611316680908203, 'inference': 8.398294448852539, 'postprocess': 0.38170814514160156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-174-_jpg.rf.7ffbfba8e5d63b5f4577f701ca5f7105.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.802206039428711, 'inference': 8.775711059570312, 'postprocess': 0.5424022674560547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[43, 43, 43],
         [43, 43, 43],
         [43, 43, 43],
         ...,
         [43, 43, 43],
         [43, 43, 43],
         [43, 43, 43]],
 
        [[43, 43, 43],
         [43, 43, 43],
         [43, 43, 43],
         ...,
         [43, 43, 43],
         [43, 43, 43],
         [43, 43, 43]],
 
        [[43, 43, 43],
         [43, 43, 43],
         [43, 43, 43],
         ...,
         [43, 43, 43],
         [43, 43, 43],
         [43, 43, 43]],
 
        ...,
 
        [[43, 43, 43],
         [43, 43, 43],
         [43, 43, 43],
         ...,
         [43, 43, 43],
         [43, 43, 43],
         [43, 43, 43]],
 
        [[43, 43, 43],
         [43, 43, 43],
         [43, 43, 43],
         ...,
         [43, 43, 43],
         [43, 43, 43],
         [43, 43, 43]],
 
        [[43, 43, 43],
         [43, 43, 43],
         [43, 43, 43],
         ...,
         [43, 43, 43],
         [43, 43, 43],
         [43, 43, 43]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.24dea194a3e0e25703a25e481c89dc9c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.581430435180664, 'inference': 9.628057479858398, 'postprocess': 0.7569789886474609},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 34,  45,  73],
         [ 32,  43,  71],
         [ 37,  48,  75],
         ...,
         [110, 127, 154],
         [104, 121, 148],
         [ 92, 109, 136]],
 
        [[ 42,  53,  81],
         [ 36,  47,  75],
         [ 35,  46,  73],
         ...,
         [ 86, 103, 130],
         [ 93, 110, 137],
         [ 96, 113, 140]],
 
        [[ 44,  55,  83],
         [ 40,  51,  79],
         [ 38,  49,  76],
         ...,
         [ 87, 104, 131],
         [ 89, 106, 133],
         [ 87, 104, 131]],
 
        ...,
 
        [[ 39,  38,  40],
         [ 43,  42,  44],
         [ 45,  44,  46],
         ...,
         [ 83,  88,  87],
         [ 92,  97,  96],
         [107, 113, 112]],
 
        [[ 46,  43,  45],
         [ 48,  45,  47],
         [ 52,  49,  51],
         ...,
         [ 76,  81,  80],
         [ 73,  78,  77],
         [ 83,  88,  87]],
 
        [[ 48,  45,  47],
         [ 49,  46,  48],
         [ 53,  50,  52],
         ...,
         [ 58,  60,  60],
         [ 47,  52,  51],
         [ 48,  53,  52]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.8d87b09b011bb4b479cea2d472354334.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9843578338623047, 'inference': 8.46409797668457, 'postprocess': 0.36716461181640625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[18, 30, 40],
         [10, 22, 32],
         [11, 22, 30],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[11, 23, 35],
         [ 7, 19, 29],
         [14, 24, 34],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 1, 12, 26],
         [ 0,  9, 23],
         [ 4, 13, 26],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[26, 31, 32],
         [24, 29, 30],
         [21, 25, 26],
         ...,
         [ 0,  0,  0],
         [ 0,  1,  1],
         [ 0,  0,  0]],
 
        [[19, 24, 25],
         [18, 23, 24],
         [14, 18, 19],
         ...,
         [ 0,  0,  0],
         [ 0,  2,  2],
         [ 0,  0,  0]],
 
        [[18, 23, 24],
         [17, 22, 23],
         [12, 16, 17],
         ...,
         [ 0,  0,  0],
         [ 0,  2,  2],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-176-_jpg.rf.be38366f2703b44711a2e9486cc677d3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4278888702392578, 'inference': 8.96763801574707, 'postprocess': 0.3609657287597656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.4b35b04139ea1742026f65aa3e2730fe.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9071102142333984, 'inference': 8.712053298950195, 'postprocess': 0.4305839538574219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        ...,
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]],
 
        [[29, 29, 29],
         [29, 29, 29],
         [29, 29, 29],
         ...,
         [29, 29, 29],
         [29, 29, 29],
         [29, 29, 29]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.86d64524dfd317ff89ce31ff39a3fa83.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6930103302001953, 'inference': 9.241342544555664, 'postprocess': 0.6244182586669922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 39,  47,  37],
         [ 39,  47,  37],
         [ 38,  46,  36],
         ...,
         [114, 118,  99],
         [122, 126, 107],
         [126, 130, 111]],
 
        [[ 39,  47,  37],
         [ 39,  47,  37],
         [ 39,  47,  37],
         ...,
         [115, 119, 100],
         [122, 126, 107],
         [127, 131, 112]],
 
        [[ 39,  47,  37],
         [ 39,  47,  37],
         [ 39,  47,  37],
         ...,
         [113, 119, 102],
         [121, 127, 110],
         [130, 136, 119]],
 
        ...,
 
        [[ 51,  60,  57],
         [ 49,  58,  55],
         [ 49,  56,  53],
         ...,
         [ 68,  72,  66],
         [ 67,  71,  66],
         [ 65,  69,  64]],
 
        [[ 46,  53,  50],
         [ 47,  54,  51],
         [ 48,  55,  52],
         ...,
         [ 68,  72,  67],
         [ 66,  70,  65],
         [ 65,  69,  64]],
 
        [[ 35,  42,  39],
         [ 39,  46,  43],
         [ 44,  51,  48],
         ...,
         [ 68,  72,  67],
         [ 67,  71,  66],
         [ 66,  70,  65]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-177-_jpg.rf.c2ece8aa91efbc0843296da9f0892b5b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3701915740966797, 'inference': 9.063482284545898, 'postprocess': 0.5500316619873047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 43,  31, 119],
         [ 44,  32, 120],
         [ 45,  33, 123],
         ...,
         [129, 108, 240],
         [133, 113, 242],
         [136, 116, 245]],
 
        [[ 44,  32, 120],
         [ 45,  33, 121],
         [ 46,  34, 124],
         ...,
         [128, 107, 239],
         [132, 112, 241],
         [135, 115, 244]],
 
        [[ 46,  34, 122],
         [ 47,  35, 123],
         [ 48,  36, 126],
         ...,
         [126, 105, 237],
         [130, 110, 239],
         [133, 113, 242]],
 
        ...,
 
        [[191, 190, 194],
         [190, 189, 193],
         [203, 202, 206],
         ...,
         [197, 198, 202],
         [187, 188, 192],
         [177, 178, 182]],
 
        [[187, 186, 190],
         [178, 177, 181],
         [188, 187, 191],
         ...,
         [193, 194, 198],
         [185, 186, 190],
         [177, 178, 182]],
 
        [[184, 183, 187],
         [167, 166, 170],
         [177, 176, 180],
         ...,
         [191, 192, 196],
         [184, 185, 189],
         [178, 179, 183]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.c4a7f4f1cff2653d7d2fbc85d91bddca.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8286705017089844, 'inference': 8.706808090209961, 'postprocess': 0.3457069396972656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        ...,
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.ca0b41b2475176a03280e24fc5d3da7b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7237663269042969, 'inference': 9.213447570800781, 'postprocess': 0.5640983581542969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        ...,
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-179-_jpg.rf.ff0320a37ee1d098eb9aed6036758287.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5270709991455078, 'inference': 9.258508682250977, 'postprocess': 0.7257461547851562},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[143, 145, 145],
         [124, 126, 126],
         [115, 115, 115],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        [[134, 136, 136],
         [118, 120, 120],
         [112, 114, 114],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        [[123, 128, 127],
         [112, 117, 116],
         [109, 114, 113],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        ...,
 
        [[122, 122, 122],
         [120, 120, 120],
         [118, 118, 118],
         ...,
         [114, 116, 116],
         [114, 116, 116],
         [111, 113, 113]],
 
        [[127, 127, 127],
         [124, 124, 124],
         [121, 121, 121],
         ...,
         [109, 111, 111],
         [106, 108, 108],
         [102, 104, 104]],
 
        [[130, 130, 130],
         [127, 127, 127],
         [123, 123, 123],
         ...,
         [105, 107, 107],
         [ 99, 101, 101],
         [ 93,  95,  95]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.146c5b1af3190071c88676c409c4dad1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7664432525634766, 'inference': 8.655548095703125, 'postprocess': 0.4673004150390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[91, 91, 91],
         [91, 91, 91],
         [91, 91, 91],
         ...,
         [91, 91, 91],
         [91, 91, 91],
         [91, 91, 91]],
 
        [[91, 91, 91],
         [91, 91, 91],
         [91, 91, 91],
         ...,
         [91, 91, 91],
         [91, 91, 91],
         [91, 91, 91]],
 
        [[91, 91, 91],
         [91, 91, 91],
         [91, 91, 91],
         ...,
         [91, 91, 91],
         [91, 91, 91],
         [91, 91, 91]],
 
        ...,
 
        [[91, 91, 91],
         [91, 91, 91],
         [91, 91, 91],
         ...,
         [91, 91, 91],
         [91, 91, 91],
         [91, 91, 91]],
 
        [[91, 91, 91],
         [91, 91, 91],
         [91, 91, 91],
         ...,
         [91, 91, 91],
         [91, 91, 91],
         [91, 91, 91]],
 
        [[91, 91, 91],
         [91, 91, 91],
         [91, 91, 91],
         ...,
         [91, 91, 91],
         [91, 91, 91],
         [91, 91, 91]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.42022b7bc105da3fc5d269c32db8dbcf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4886856079101562, 'inference': 8.627176284790039, 'postprocess': 0.3325939178466797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 67,  67,  67],
         [ 67,  67,  67],
         [ 67,  67,  67],
         ...,
         [ 67,  67,  67],
         [ 67,  67,  67],
         [ 67,  67,  67]],
 
        [[ 69,  69,  69],
         [ 69,  69,  69],
         [ 69,  69,  69],
         ...,
         [ 67,  67,  67],
         [ 67,  67,  67],
         [ 67,  67,  67]],
 
        [[ 68,  68,  68],
         [ 68,  68,  68],
         [ 68,  68,  68],
         ...,
         [ 67,  67,  67],
         [ 67,  67,  67],
         [ 67,  67,  67]],
 
        ...,
 
        [[ 71,  66,  67],
         [ 71,  66,  67],
         [ 69,  67,  67],
         ...,
         [190, 190, 190],
         [191, 191, 191],
         [192, 192, 192]],
 
        [[ 71,  66,  67],
         [ 71,  66,  67],
         [ 69,  67,  67],
         ...,
         [189, 189, 189],
         [190, 190, 190],
         [191, 191, 191]],
 
        [[ 71,  66,  67],
         [ 71,  66,  67],
         [ 69,  67,  67],
         ...,
         [189, 189, 189],
         [190, 190, 190],
         [190, 190, 190]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-18-_jpg.rf.f4e625f77be483b3db88308e516192a1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.924753189086914, 'inference': 8.506059646606445, 'postprocess': 0.35500526428222656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.16f8930512bc55a715ff702283ede87f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4328956604003906, 'inference': 13.825416564941406, 'postprocess': 0.4451274871826172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[1, 1, 1],
         [1, 1, 1],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [1, 1, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [1, 1, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [1, 1, 1]],
 
        ...,
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.544e62b6d885e8e5cc375189b6c13233.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0334720611572266, 'inference': 8.843421936035156, 'postprocess': 0.4425048828125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[236, 237, 235],
         [252, 253, 251],
         [241, 242, 240],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[240, 241, 239],
         [255, 255, 254],
         [245, 246, 244],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[241, 242, 240],
         [255, 255, 254],
         [246, 247, 245],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        ...,
 
        [[ 56,  54,  54],
         [ 68,  66,  66],
         [ 80,  78,  78],
         ...,
         [132, 132, 132],
         [127, 127, 127],
         [133, 133, 133]],
 
        [[ 62,  60,  60],
         [ 70,  68,  68],
         [ 77,  75,  75],
         ...,
         [133, 133, 133],
         [129, 129, 129],
         [135, 135, 135]],
 
        [[ 67,  65,  65],
         [ 71,  69,  69],
         [ 72,  70,  70],
         ...,
         [135, 135, 135],
         [131, 131, 131],
         [136, 136, 136]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-180-_jpg.rf.edbdd29c7a063d66218221470a7e44f5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8200874328613281, 'inference': 13.925313949584961, 'postprocess': 0.41294097900390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[23, 23, 23],
         [23, 23, 23],
         [23, 23, 23],
         ...,
         [23, 23, 23],
         [23, 23, 23],
         [23, 23, 23]],
 
        [[23, 23, 23],
         [23, 23, 23],
         [23, 23, 23],
         ...,
         [23, 23, 23],
         [23, 23, 23],
         [23, 23, 23]],
 
        [[23, 23, 23],
         [23, 23, 23],
         [23, 23, 23],
         ...,
         [23, 23, 23],
         [23, 23, 23],
         [23, 23, 23]],
 
        ...,
 
        [[23, 23, 23],
         [23, 23, 23],
         [23, 23, 23],
         ...,
         [23, 23, 23],
         [23, 23, 23],
         [23, 23, 23]],
 
        [[23, 23, 23],
         [23, 23, 23],
         [23, 23, 23],
         ...,
         [23, 23, 23],
         [23, 23, 23],
         [23, 23, 23]],
 
        [[23, 23, 23],
         [23, 23, 23],
         [23, 23, 23],
         ...,
         [23, 23, 23],
         [23, 23, 23],
         [23, 23, 23]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.4c915083eb98e45fee4d4f707f89406a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3179779052734375, 'inference': 9.894371032714844, 'postprocess': 0.4458427429199219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.d2e46218aa9286f174c99c772f1c1758.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7764568328857422, 'inference': 9.122848510742188, 'postprocess': 0.7250308990478516},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 76,  68,  68],
         [ 78,  70,  70],
         [ 69,  61,  61],
         ...,
         [103,  91,  97],
         [ 97,  82,  90],
         [ 94,  79,  87]],
 
        [[ 84,  76,  76],
         [ 84,  76,  76],
         [ 70,  62,  62],
         ...,
         [ 89,  77,  83],
         [ 87,  73,  79],
         [ 90,  76,  82]],
 
        [[ 91,  83,  83],
         [ 90,  82,  82],
         [ 73,  65,  66],
         ...,
         [ 74,  63,  66],
         [ 75,  61,  65],
         [ 85,  71,  75]],
 
        ...,
 
        [[150, 181, 196],
         [ 83, 116, 131],
         [ 69, 104, 118],
         ...,
         [ 91,  80,  76],
         [ 86,  75,  71],
         [ 83,  72,  68]],
 
        [[128, 153, 169],
         [ 85, 110, 126],
         [ 84, 110, 126],
         ...,
         [ 91,  80,  76],
         [ 89,  78,  74],
         [ 88,  77,  73]],
 
        [[ 99, 119, 136],
         [ 94, 117, 133],
         [113, 136, 152],
         ...,
         [ 93,  82,  78],
         [ 94,  83,  79],
         [ 95,  84,  80]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-181-_jpg.rf.e0d1623b0c6c69da4a967af45bebbdbd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3833045959472656, 'inference': 13.329744338989258, 'postprocess': 0.7164478302001953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.0689172bca1eeb50732cceb0a2d2dbc7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6627311706542969, 'inference': 9.074211120605469, 'postprocess': 0.35309791564941406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[112, 124, 136],
         [100, 112, 124],
         [ 71,  83,  95],
         ...,
         [  0,  15,   1],
         [  4,  19,   5],
         [  8,  23,   9]],
 
        [[ 83,  95, 107],
         [ 81,  93, 105],
         [ 64,  76,  88],
         ...,
         [  0,  15,   1],
         [  4,  19,   5],
         [  7,  22,   8]],
 
        [[ 47,  59,  71],
         [ 57,  69,  81],
         [ 56,  68,  80],
         ...,
         [  0,  14,   0],
         [  3,  18,   4],
         [  6,  21,   7]],
 
        ...,
 
        [[ 65,  60,  59],
         [ 72,  67,  66],
         [ 68,  63,  62],
         ...,
         [ 41,  34,  31],
         [ 42,  36,  31],
         [ 41,  35,  30]],
 
        [[ 63,  58,  57],
         [ 69,  64,  63],
         [ 64,  59,  58],
         ...,
         [ 44,  37,  34],
         [ 44,  38,  33],
         [ 42,  36,  31]],
 
        [[ 62,  57,  56],
         [ 67,  62,  61],
         [ 62,  57,  56],
         ...,
         [ 45,  38,  35],
         [ 43,  37,  32],
         [ 39,  33,  28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.236dc9bd798d6f8c56dbfdc5754e3b68.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9009113311767578, 'inference': 8.516788482666016, 'postprocess': 0.8106231689453125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[93, 93, 93],
         [93, 93, 93],
         [93, 93, 93],
         ...,
         [93, 93, 93],
         [93, 93, 93],
         [93, 93, 93]],
 
        [[93, 93, 93],
         [93, 93, 93],
         [93, 93, 93],
         ...,
         [93, 93, 93],
         [93, 93, 93],
         [93, 93, 93]],
 
        [[93, 93, 93],
         [93, 93, 93],
         [93, 93, 93],
         ...,
         [93, 93, 93],
         [93, 93, 93],
         [93, 93, 93]],
 
        ...,
 
        [[93, 93, 93],
         [93, 93, 93],
         [93, 93, 93],
         ...,
         [93, 93, 93],
         [93, 93, 93],
         [93, 93, 93]],
 
        [[93, 93, 93],
         [93, 93, 93],
         [93, 93, 93],
         ...,
         [93, 93, 93],
         [93, 93, 93],
         [93, 93, 93]],
 
        [[93, 93, 93],
         [93, 93, 93],
         [93, 93, 93],
         ...,
         [93, 93, 93],
         [93, 93, 93],
         [93, 93, 93]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-182-_jpg.rf.4b148a54550e9eeccfacda80024037b1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4617443084716797, 'inference': 8.544683456420898, 'postprocess': 0.3383159637451172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [52, 52, 52],
         [51, 51, 51],
         [54, 54, 54]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 1,  1,  1],
         [ 0,  0,  0],
         [ 2,  2,  2]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.4bf9653396b984986c36623ca51a9b89.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7480850219726562, 'inference': 11.146306991577148, 'postprocess': 0.762939453125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 91, 101, 111],
         [ 87,  97, 107],
         [ 87,  97, 107],
         ...,
         [114, 114, 114],
         [ 83,  79,  78],
         [ 57,  52,  51]],
 
        [[ 98, 108, 118],
         [ 95, 105, 115],
         [ 95, 105, 115],
         ...,
         [123, 121, 121],
         [ 60,  56,  55],
         [ 47,  42,  41]],
 
        [[109, 119, 129],
         [107, 117, 127],
         [107, 117, 127],
         ...,
         [144, 140, 139],
         [ 53,  48,  47],
         [ 73,  65,  65]],
 
        ...,
 
        [[150, 150, 150],
         [142, 142, 142],
         [150, 150, 150],
         ...,
         [132, 131, 133],
         [129, 128, 130],
         [130, 129, 131]],
 
        [[148, 148, 148],
         [155, 155, 155],
         [142, 142, 142],
         ...,
         [132, 131, 133],
         [129, 128, 130],
         [130, 129, 131]],
 
        [[158, 158, 158],
         [168, 168, 168],
         [140, 140, 140],
         ...,
         [136, 135, 137],
         [133, 132, 134],
         [134, 133, 135]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.b060d919f03803a454f2c92fb25e51ec.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4357566833496094, 'inference': 8.559226989746094, 'postprocess': 0.3294944763183594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [7, 5, 5],
         [2, 0, 0],
         [2, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [8, 6, 6],
         [2, 0, 0],
         [2, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [9, 7, 7],
         [2, 0, 0],
         [2, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-185-_jpg.rf.e5609451b471c39a9c9eaf5ff7b3ac94.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8625259399414062, 'inference': 8.719921112060547, 'postprocess': 0.5028247833251953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  4,   0,   0],
         [  7,   3,   2],
         [ 10,   6,   5],
         ...,
         [129, 160, 159],
         [124, 166, 165],
         [110, 160, 160]],
 
        [[  5,   1,   0],
         [  7,   3,   2],
         [  9,   5,   4],
         ...,
         [122, 153, 152],
         [118, 162, 163],
         [107, 159, 159]],
 
        [[ 13,   8,   5],
         [ 13,   8,   5],
         [ 14,   9,   6],
         ...,
         [111, 145, 144],
         [109, 157, 158],
         [106, 160, 161]],
 
        ...,
 
        [[ 53,  41,  29],
         [ 53,  41,  29],
         [ 52,  40,  28],
         ...,
         [ 35,  30,  29],
         [ 38,  33,  32],
         [ 39,  34,  33]],
 
        [[ 53,  41,  29],
         [ 53,  41,  29],
         [ 52,  40,  28],
         ...,
         [ 35,  30,  29],
         [ 38,  33,  32],
         [ 40,  35,  34]],
 
        [[ 53,  41,  29],
         [ 53,  41,  29],
         [ 52,  40,  28],
         ...,
         [ 34,  29,  28],
         [ 37,  32,  31],
         [ 40,  35,  34]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.124fb81faf74b03398e066e6d7cbc9eb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3875961303710938, 'inference': 8.361101150512695, 'postprocess': 0.37384033203125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.6df069fb0a914f27571234fbc1aa446b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8017292022705078, 'inference': 8.759260177612305, 'postprocess': 0.3657341003417969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   6],
         [  0,   2,   9],
         [  0,   2,   7],
         ...,
         [213, 207, 188],
         [212, 214, 192],
         [215, 218, 196]],
 
        [[  0,   0,   7],
         [  0,   0,   6],
         [  0,   0,   7],
         ...,
         [203, 199, 180],
         [200, 201, 181],
         [198, 203, 182]],
 
        [[  0,   3,  14],
         [  6,  13,  22],
         [  6,  14,  21],
         ...,
         [189, 187, 169],
         [184, 186, 167],
         [180, 186, 167]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   1,   0],
         [  0,   1,   0],
         [  0,   1,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   1,   0],
         [  0,   1,   0],
         [  0,   1,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-186-_jpg.rf.6dfa17e72f379782ec0b743ba60b8543.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6682147979736328, 'inference': 8.802652359008789, 'postprocess': 0.3581047058105469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.725f375e91986c9cc15b8f0b2b708cb9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3816356658935547, 'inference': 8.327484130859375, 'postprocess': 0.42247772216796875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.8978c4919b51dcb2843c4d992a0bc5f6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8393993377685547, 'inference': 8.310079574584961, 'postprocess': 0.33283233642578125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[139, 151, 153],
         [159, 171, 173],
         [154, 166, 170],
         ...,
         [243, 253, 253],
         [242, 252, 252],
         [240, 250, 250]],
 
        [[131, 143, 145],
         [152, 164, 166],
         [151, 163, 167],
         ...,
         [241, 251, 251],
         [239, 249, 249],
         [238, 248, 248]],
 
        [[123, 135, 137],
         [145, 157, 159],
         [146, 158, 162],
         ...,
         [239, 249, 249],
         [238, 248, 248],
         [236, 246, 246]],
 
        ...,
 
        [[ 84,  93, 106],
         [ 93, 102, 115],
         [ 99, 108, 121],
         ...,
         [123, 156, 172],
         [123, 156, 172],
         [120, 153, 169]],
 
        [[110, 119, 132],
         [ 93, 102, 115],
         [ 83,  92, 105],
         ...,
         [122, 155, 171],
         [123, 156, 172],
         [121, 154, 170]],
 
        [[124, 133, 146],
         [ 92, 101, 114],
         [ 79,  88, 101],
         ...,
         [121, 154, 170],
         [123, 156, 172],
         [121, 154, 170]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-187-_jpg.rf.cc1cf985fedc5bc6d7b3fda53980e6f3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4421939849853516, 'inference': 8.893966674804688, 'postprocess': 0.47588348388671875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 1, 0],
         [0, 1, 0],
         [0, 1, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 1, 0],
         [0, 1, 0],
         [0, 1, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.635564dad2da056faf9127525b2b6cb4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9185543060302734, 'inference': 8.341550827026367, 'postprocess': 0.32448768615722656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[242, 233, 213],
         [243, 234, 214],
         [241, 234, 214],
         ...,
         [203, 204, 195],
         [253, 254, 245],
         [247, 250, 241]],
 
        [[242, 233, 213],
         [242, 233, 213],
         [241, 234, 214],
         ...,
         [201, 202, 193],
         [255, 255, 249],
         [255, 255, 249]],
 
        [[239, 232, 213],
         [239, 232, 213],
         [240, 233, 214],
         ...,
         [196, 197, 188],
         [244, 245, 236],
         [245, 248, 239]],
 
        ...,
 
        [[133, 124, 114],
         [134, 125, 115],
         [136, 127, 117],
         ...,
         [131, 119, 117],
         [130, 118, 116],
         [130, 118, 116]],
 
        [[130, 121, 111],
         [131, 122, 112],
         [133, 124, 114],
         ...,
         [131, 119, 117],
         [130, 118, 116],
         [130, 118, 116]],
 
        [[133, 124, 114],
         [134, 125, 115],
         [136, 127, 117],
         ...,
         [131, 119, 117],
         [130, 118, 116],
         [130, 118, 116]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.892956f0dc513250fbe68acd8c8b91e1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7635822296142578, 'inference': 8.499622344970703, 'postprocess': 0.40268898010253906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-188-_jpg.rf.dcd45e3458a07cec9ba93918315d2eaf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.592874526977539, 'inference': 13.631105422973633, 'postprocess': 0.5469322204589844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        ...,
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.6ecb9b14009286fba81f2e83e3b7f1e1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6484260559082031, 'inference': 8.73112678527832, 'postprocess': 0.42557716369628906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[134, 130, 129],
         [135, 131, 130],
         [136, 134, 133],
         ...,
         [ 90, 101, 109],
         [ 80,  89,  99],
         [ 74,  83,  93]],
 
        [[134, 130, 129],
         [135, 131, 130],
         [136, 134, 133],
         ...,
         [ 96, 107, 115],
         [ 87,  96, 106],
         [ 81,  90, 100]],
 
        [[134, 130, 129],
         [136, 132, 131],
         [136, 134, 133],
         ...,
         [104, 113, 122],
         [ 97, 103, 114],
         [ 92,  98, 109]],
 
        ...,
 
        [[ 81,  79,  78],
         [ 81,  79,  78],
         [ 81,  79,  78],
         ...,
         [ 94,  96,  97],
         [ 91,  93,  94],
         [ 89,  91,  92]],
 
        [[ 80,  78,  77],
         [ 80,  78,  77],
         [ 80,  78,  77],
         ...,
         [ 95,  97,  98],
         [ 92,  94,  95],
         [ 90,  92,  93]],
 
        [[ 80,  78,  77],
         [ 80,  78,  77],
         [ 80,  78,  77],
         ...,
         [ 95,  97,  98],
         [ 93,  95,  96],
         [ 90,  92,  93]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.7a11114bc4c2fe1c330b2eff3ec1b609.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.318216323852539, 'inference': 9.188175201416016, 'postprocess': 0.40721893310546875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-189-_jpg.rf.cf414d706efddcb1fd32a8b42bcfd9a7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7659664154052734, 'inference': 9.244918823242188, 'postprocess': 0.3724098205566406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[158, 168, 178],
         [119, 128, 137],
         [144, 151, 160],
         ...,
         [106, 109, 113],
         [119, 120, 124],
         [142, 143, 147]],
 
        [[154, 164, 174],
         [132, 141, 150],
         [153, 160, 169],
         ...,
         [121, 124, 128],
         [150, 151, 155],
         [186, 187, 191]],
 
        [[157, 167, 177],
         [140, 149, 158],
         [162, 169, 178],
         ...,
         [161, 162, 166],
         [178, 179, 183],
         [162, 163, 167]],
 
        ...,
 
        [[116,  81,  71],
         [103,  68,  58],
         [116,  84,  73],
         ...,
         [ 83,  78,  77],
         [ 95,  91,  90],
         [ 79,  75,  74]],
 
        [[119,  83,  73],
         [118,  83,  73],
         [130,  98,  87],
         ...,
         [ 66,  61,  60],
         [ 66,  62,  61],
         [ 64,  60,  59]],
 
        [[135,  99,  89],
         [143, 108,  98],
         [146, 111, 101],
         ...,
         [ 50,  45,  44],
         [ 31,  27,  26],
         [ 52,  48,  47]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.3427acf9ec34ef05f6fe4a10e7280478.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6853809356689453, 'inference': 9.35053825378418, 'postprocess': 0.6270408630371094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [11, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        ...,
 
        [[11, 11, 11],
         [11, 11, 11],
         [ 9, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [ 9, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]],
 
        [[11, 11, 11],
         [11, 11, 11],
         [ 9, 11, 11],
         ...,
         [11, 11, 11],
         [11, 11, 11],
         [11, 11, 11]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.5b617b77a960e3e18ff122c7c17a3a90.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3422966003417969, 'inference': 10.250329971313477, 'postprocess': 0.42557716369628906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-19-_jpg.rf.8ec9e835434bab69526356b80fb94588.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6548633575439453, 'inference': 8.493185043334961, 'postprocess': 0.3933906555175781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        ...,
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.531db54959dd774f8f60dee6d86da08e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2896060943603516, 'inference': 8.957147598266602, 'postprocess': 0.3685951232910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 93, 101,  90],
         [ 74,  82,  71],
         [ 56,  64,  53],
         ...,
         [ 44,  61,  52],
         [ 44,  61,  52],
         [ 48,  65,  56]],
 
        [[ 96, 104,  93],
         [ 77,  85,  74],
         [ 58,  66,  55],
         ...,
         [ 42,  57,  49],
         [ 42,  57,  49],
         [ 47,  62,  54]],
 
        [[100, 108,  97],
         [ 81,  89,  78],
         [ 61,  69,  58],
         ...,
         [ 46,  57,  49],
         [ 48,  59,  51],
         [ 55,  66,  58]],
 
        ...,
 
        [[164, 160, 165],
         [155, 151, 156],
         [145, 141, 146],
         ...,
         [ 41,  43,  43],
         [ 41,  43,  43],
         [ 41,  43,  43]],
 
        [[186, 182, 187],
         [177, 173, 178],
         [166, 162, 167],
         ...,
         [ 80,  82,  82],
         [ 79,  81,  81],
         [ 79,  81,  81]],
 
        [[186, 182, 187],
         [177, 173, 178],
         [165, 161, 166],
         ...,
         [ 75,  77,  77],
         [ 74,  76,  76],
         [ 74,  76,  76]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.a8973074639f95f416ad6ba0ccbbb03e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7783641815185547, 'inference': 9.007930755615234, 'postprocess': 0.3826618194580078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   3,   0],
         [  0,   3,   0],
         [  0,   3,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   3,   0],
         [  0,   3,   0],
         [  0,   3,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   3,   0],
         [  0,   3,   0],
         [  0,   3,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [110, 106, 111],
         [109, 105, 110],
         [105, 101, 106]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [112, 106, 111],
         [111, 105, 110],
         [108, 102, 107]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [113, 107, 112],
         [112, 106, 111],
         [108, 102, 107]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-190-_jpg.rf.dbf09b649249bd7101e280f5a14957c6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7242431640625, 'inference': 9.367704391479492, 'postprocess': 1.8725395202636719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        ...,
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.722924f292c69c3948e42a9759882f26.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.573324203491211, 'inference': 9.865999221801758, 'postprocess': 0.83160400390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[70, 70, 70],
         [70, 70, 70],
         [70, 70, 70],
         ...,
         [70, 70, 70],
         [70, 70, 70],
         [70, 70, 70]],
 
        [[70, 70, 70],
         [70, 70, 70],
         [70, 70, 70],
         ...,
         [70, 70, 70],
         [70, 70, 70],
         [70, 70, 70]],
 
        [[70, 70, 70],
         [70, 70, 70],
         [70, 70, 70],
         ...,
         [70, 70, 70],
         [70, 70, 70],
         [70, 70, 70]],
 
        ...,
 
        [[70, 70, 70],
         [70, 70, 70],
         [70, 70, 70],
         ...,
         [70, 70, 70],
         [70, 70, 70],
         [70, 70, 70]],
 
        [[70, 70, 70],
         [70, 70, 70],
         [70, 70, 70],
         ...,
         [70, 70, 70],
         [70, 70, 70],
         [70, 70, 70]],
 
        [[70, 70, 70],
         [70, 70, 70],
         [70, 70, 70],
         ...,
         [70, 70, 70],
         [70, 70, 70],
         [70, 70, 70]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.eecd3cdfc404f62988bc698f87ae2e4e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7905235290527344, 'inference': 8.90803337097168, 'postprocess': 0.3952980041503906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[132, 127, 126],
         [143, 138, 137],
         [144, 139, 138],
         ...,
         [181, 181, 181],
         [175, 175, 175],
         [130, 130, 130]],
 
        [[131, 126, 125],
         [151, 146, 145],
         [149, 144, 143],
         ...,
         [167, 167, 167],
         [168, 168, 168],
         [140, 140, 140]],
 
        [[136, 131, 130],
         [152, 147, 146],
         [137, 132, 131],
         ...,
         [154, 154, 154],
         [163, 163, 163],
         [157, 157, 157]],
 
        ...,
 
        [[197, 204, 201],
         [135, 142, 139],
         [115, 120, 119],
         ...,
         [103, 101, 101],
         [ 98,  96,  96],
         [134, 132, 132]],
 
        [[127, 134, 129],
         [ 98, 105, 102],
         [126, 131, 130],
         ...,
         [ 96,  94,  94],
         [ 89,  87,  87],
         [104, 102, 102]],
 
        [[113, 120, 115],
         [ 94, 101,  96],
         [132, 137, 136],
         ...,
         [ 88,  86,  86],
         [ 88,  86,  86],
         [ 83,  81,  81]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-191-_jpg.rf.f1ecc5629bdf5860ae57d7d27dafb299.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5773773193359375, 'inference': 9.043455123901367, 'postprocess': 0.39958953857421875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        ...,
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.0347198a0674c89124a169b3ede8d1b8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7359256744384766, 'inference': 8.474588394165039, 'postprocess': 0.44035911560058594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[187, 192, 195],
         [188, 193, 196],
         [190, 195, 198],
         ...,
         [144, 161, 174],
         [115, 132, 145],
         [122, 139, 152]],
 
        [[187, 192, 195],
         [188, 193, 196],
         [190, 195, 198],
         ...,
         [161, 178, 191],
         [118, 135, 148],
         [100, 117, 130]],
 
        [[189, 194, 197],
         [189, 194, 197],
         [191, 196, 199],
         ...,
         [181, 197, 210],
         [122, 138, 151],
         [ 78,  94, 107]],
 
        ...,
 
        [[174, 183, 187],
         [168, 177, 181],
         [174, 183, 187],
         ...,
         [ 60,  78,  89],
         [ 70,  89,  97],
         [ 73,  92, 100]],
 
        [[167, 176, 180],
         [166, 175, 179],
         [174, 183, 187],
         ...,
         [ 69,  89, 100],
         [ 77,  98, 106],
         [ 80, 101, 109]],
 
        [[161, 170, 174],
         [164, 173, 177],
         [173, 182, 186],
         ...,
         [ 80, 100, 111],
         [ 87, 108, 116],
         [ 88, 109, 117]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.0e60f4ceb45a85c359677ee01c088045.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.363515853881836, 'inference': 8.741378784179688, 'postprocess': 0.36215782165527344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-194-_jpg.rf.15feb8e01893318219d223a82a97d069.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.760244369506836, 'inference': 8.539199829101562, 'postprocess': 0.3604888916015625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.0bbee8fd461407d8eded3b0ea8e80b4c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8286705017089844, 'inference': 8.789539337158203, 'postprocess': 0.9124279022216797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 29,  36,  45],
         [ 30,  37,  46],
         [ 31,  39,  46],
         ...,
         [103, 109, 120],
         [102, 108, 121],
         [101, 107, 120]],
 
        [[ 29,  36,  45],
         [ 30,  37,  46],
         [ 31,  39,  46],
         ...,
         [107, 113, 124],
         [106, 112, 125],
         [105, 111, 124]],
 
        [[ 29,  36,  45],
         [ 30,  37,  46],
         [ 30,  38,  45],
         ...,
         [115, 119, 130],
         [112, 118, 129],
         [112, 118, 129]],
 
        ...,
 
        [[ 49,  49,  49],
         [ 49,  49,  49],
         [ 46,  46,  46],
         ...,
         [101,  95,  96],
         [106, 100, 101],
         [110, 104, 105]],
 
        [[ 50,  50,  50],
         [ 51,  51,  51],
         [ 51,  51,  51],
         ...,
         [ 98,  92,  93],
         [105,  99, 100],
         [110, 104, 105]],
 
        [[ 50,  50,  50],
         [ 52,  52,  52],
         [ 54,  54,  54],
         ...,
         [ 96,  90,  91],
         [104,  98,  99],
         [109, 103, 104]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.66e723938cac897ced6246535fe9da8a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4312267303466797, 'inference': 8.908271789550781, 'postprocess': 0.4763603210449219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-195-_jpg.rf.ace8dee3ec0fba3d7a33c3de2c315f0a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7898082733154297, 'inference': 8.801698684692383, 'postprocess': 0.39267539978027344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[161, 123,  88],
         [162, 125,  91],
         [160, 125,  92],
         ...,
         [191, 164, 138],
         [207, 178, 151],
         [180, 151, 124]],
 
        [[173, 135, 100],
         [177, 140, 106],
         [164, 128,  98],
         ...,
         [211, 184, 157],
         [212, 183, 156],
         [200, 171, 144]],
 
        [[191, 154, 120],
         [192, 157, 123],
         [165, 131, 101],
         ...,
         [231, 203, 173],
         [216, 188, 158],
         [220, 192, 162]],
 
        ...,
 
        [[162, 161, 157],
         [154, 153, 149],
         [145, 144, 140],
         ...,
         [119, 128, 137],
         [125, 134, 143],
         [125, 134, 143]],
 
        [[162, 161, 157],
         [172, 171, 167],
         [155, 154, 150],
         ...,
         [ 91, 100, 109],
         [115, 124, 133],
         [116, 125, 134]],
 
        [[154, 153, 149],
         [192, 191, 187],
         [177, 176, 172],
         ...,
         [ 75,  84,  93],
         [115, 124, 133],
         [119, 128, 137]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.66a50a098577b349d7bee13dc9640c2e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.386880874633789, 'inference': 9.212732315063477, 'postprocess': 0.4017353057861328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.7ea9f287f872540f14495fae6d91e4e6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7125606536865234, 'inference': 9.145498275756836, 'postprocess': 0.5428791046142578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 1, 0],
         [4, 1, 0],
         [4, 1, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 1, 0],
         [4, 0, 0],
         [2, 1, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 1, 0],
         [2, 0, 0],
         [0, 1, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [5, 5, 5],
         [0, 0, 0],
         [1, 1, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [8, 8, 8],
         [0, 0, 0],
         [2, 2, 2]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [3, 3, 3],
         [0, 0, 0],
         [8, 8, 8]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-196-_jpg.rf.812d218445763c3ed203a0f9458291f9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8124580383300781, 'inference': 8.507251739501953, 'postprocess': 0.35691261291503906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        ...,
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.0216ae6ebea5c3912f51c76bdbae6d19.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4295578002929688, 'inference': 8.833885192871094, 'postprocess': 0.36835670471191406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 87, 125, 137],
         [ 87, 125, 137],
         [ 87, 125, 137],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        [[ 87, 125, 137],
         [ 87, 125, 137],
         [ 87, 125, 137],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        [[ 89, 124, 137],
         [ 89, 124, 137],
         [ 89, 124, 137],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        ...,
 
        [[170, 189, 186],
         [166, 185, 182],
         [163, 182, 179],
         ...,
         [168, 194, 211],
         [167, 193, 210],
         [167, 193, 210]],
 
        [[167, 186, 183],
         [161, 180, 177],
         [155, 174, 171],
         ...,
         [166, 192, 209],
         [165, 191, 208],
         [165, 191, 208]],
 
        [[163, 182, 179],
         [156, 175, 172],
         [147, 166, 163],
         ...,
         [165, 191, 208],
         [164, 190, 207],
         [164, 190, 207]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.76da5b1b10db8580430d527ce9cc2ac3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.758575439453125, 'inference': 8.579254150390625, 'postprocess': 0.3781318664550781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-197-_jpg.rf.ca567ffa1d1798025a45cf933eb8a5ba.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.444101333618164, 'inference': 9.173870086669922, 'postprocess': 0.5178451538085938},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87]],
 
        [[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87]],
 
        [[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87]],
 
        ...,
 
        [[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [181, 204, 220],
         [180, 203, 218],
         [179, 202, 217]],
 
        [[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [185, 208, 224],
         [181, 204, 219],
         [178, 201, 216]],
 
        [[ 87,  87,  87],
         [ 87,  87,  87],
         [ 87,  87,  87],
         ...,
         [188, 211, 227],
         [181, 204, 219],
         [176, 199, 214]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.3fd6176b3671e235690487a5759a10f9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8956661224365234, 'inference': 8.795499801635742, 'postprocess': 0.4343986511230469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[176, 182, 177],
         [175, 181, 176],
         [184, 188, 183],
         ...,
         [245, 242, 238],
         [238, 236, 235],
         [224, 222, 221]],
 
        [[169, 175, 170],
         [182, 188, 183],
         [196, 200, 195],
         ...,
         [247, 244, 240],
         [241, 239, 238],
         [231, 229, 228]],
 
        [[176, 182, 177],
         [190, 196, 191],
         [200, 204, 199],
         ...,
         [255, 253, 249],
         [249, 247, 246],
         [246, 244, 243]],
 
        ...,
 
        [[ 76,  92,  98],
         [ 72,  91,  96],
         [ 69,  89,  94],
         ...,
         [ 95, 120, 136],
         [ 98, 123, 139],
         [103, 128, 144]],
 
        [[ 66,  81,  84],
         [ 58,  75,  78],
         [ 51,  70,  73],
         ...,
         [ 84, 109, 125],
         [ 93, 118, 134],
         [ 99, 124, 140]],
 
        [[ 59,  74,  76],
         [ 51,  69,  70],
         [ 46,  63,  66],
         ...,
         [ 71,  96, 112],
         [ 83, 108, 124],
         [ 89, 114, 130]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.4a69d95662fb642c674f26ff0ef0a5a9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3778209686279297, 'inference': 9.239912033081055, 'postprocess': 0.39696693420410156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-198-_jpg.rf.5bfd105d64b4c14a88672ff3fdefc4ea.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8682479858398438, 'inference': 9.03177261352539, 'postprocess': 0.5812644958496094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[108,  99, 112],
         [125, 116, 129],
         [138, 130, 141],
         ...,
         [156, 152, 157],
         [142, 141, 145],
         [145, 144, 148]],
 
        [[117, 108, 121],
         [122, 113, 126],
         [127, 119, 130],
         ...,
         [150, 146, 151],
         [141, 140, 144],
         [145, 144, 148]],
 
        [[113, 106, 119],
         [109, 102, 115],
         [111, 105, 116],
         ...,
         [142, 141, 145],
         [142, 141, 145],
         [148, 147, 151]],
 
        ...,
 
        [[149, 121, 120],
         [149, 121, 120],
         [149, 121, 120],
         ...,
         [117,  84,  75],
         [111,  80,  71],
         [118,  87,  78]],
 
        [[149, 121, 120],
         [149, 121, 120],
         [149, 121, 120],
         ...,
         [121,  88,  79],
         [114,  81,  72],
         [114,  81,  72]],
 
        [[149, 121, 120],
         [149, 121, 120],
         [149, 121, 120],
         ...,
         [127,  94,  85],
         [116,  83,  74],
         [111,  78,  69]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.08d902c95a9a00f33f6a031a3ce86eaf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8205642700195312, 'inference': 8.836507797241211, 'postprocess': 0.3619194030761719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.89fa1c3f06bec1dfef2b96f692db78b6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6660690307617188, 'inference': 8.59522819519043, 'postprocess': 0.3256797790527344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        ...,
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-199-_jpg.rf.cedbf41ae88b4faa6ca4e3f9907c9678.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.680612564086914, 'inference': 8.982181549072266, 'postprocess': 0.4420280456542969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        ...,
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]],
 
        [[36, 36, 36],
         [36, 36, 36],
         [36, 36, 36],
         ...,
         [36, 36, 36],
         [36, 36, 36],
         [36, 36, 36]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.1db425f6267df87504430ef5a0e23709.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3704299926757812, 'inference': 8.413076400756836, 'postprocess': 0.39839744567871094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[133, 138, 136],
         [134, 139, 137],
         [134, 139, 137],
         ...,
         [144, 150, 149],
         [140, 146, 145],
         [136, 142, 141]],
 
        [[132, 137, 135],
         [133, 138, 136],
         [133, 138, 136],
         ...,
         [147, 153, 152],
         [143, 149, 148],
         [139, 145, 144]],
 
        [[124, 129, 127],
         [125, 130, 128],
         [125, 130, 128],
         ...,
         [142, 148, 147],
         [138, 144, 143],
         [135, 141, 140]],
 
        ...,
 
        [[129, 134, 133],
         [133, 138, 137],
         [142, 147, 146],
         ...,
         [120, 127, 130],
         [114, 121, 124],
         [110, 117, 120]],
 
        [[127, 132, 131],
         [131, 136, 135],
         [141, 146, 145],
         ...,
         [113, 120, 123],
         [101, 108, 111],
         [ 92,  99, 102]],
 
        [[123, 128, 127],
         [130, 135, 134],
         [144, 149, 148],
         ...,
         [117, 124, 127],
         [103, 110, 113],
         [ 91,  98, 101]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.bb6da014663463596e9cdcb39bfa3d40.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8374919891357422, 'inference': 8.462667465209961, 'postprocess': 0.3254413604736328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        ...,
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-2-_jpg.rf.f0b15cd48578f75fff175242f1d8d9d0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7020702362060547, 'inference': 9.076833724975586, 'postprocess': 0.3650188446044922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [114, 109, 110],
         [114, 109, 110],
         [114, 109, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [114, 109, 110],
         [114, 109, 110],
         [114, 109, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [112, 110, 110],
         [112, 110, 110],
         [112, 110, 110]],
 
        ...,
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.4b6780fd03079cb3617f1b6c3893f081.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4629364013671875, 'inference': 12.628793716430664, 'postprocess': 0.3478527069091797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.95832ba3432d34d8935a2aa3290fcccc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8558502197265625, 'inference': 9.011268615722656, 'postprocess': 0.37217140197753906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 66,  75,  84],
         [ 67,  76,  85],
         [ 67,  76,  85],
         ...,
         [133, 103, 102],
         [141, 110, 107],
         [151, 120, 117]],
 
        [[ 68,  77,  86],
         [ 68,  77,  86],
         [ 69,  78,  87],
         ...,
         [124,  94,  93],
         [134, 105, 101],
         [146, 117, 113]],
 
        [[ 71,  80,  89],
         [ 71,  80,  89],
         [ 71,  80,  89],
         ...,
         [102,  74,  73],
         [119,  91,  90],
         [134, 106, 105]],
 
        ...,
 
        [[ 51,  53,  63],
         [ 52,  54,  64],
         [ 54,  56,  66],
         ...,
         [ 54,  57,  62],
         [ 56,  59,  64],
         [ 57,  60,  65]],
 
        [[ 52,  54,  64],
         [ 52,  54,  64],
         [ 53,  55,  65],
         ...,
         [ 33,  36,  41],
         [ 35,  38,  43],
         [ 36,  39,  44]],
 
        [[ 56,  58,  68],
         [ 54,  56,  66],
         [ 53,  55,  65],
         ...,
         [ 36,  39,  44],
         [ 38,  41,  46],
         [ 40,  43,  48]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-201-_jpg.rf.e3dd8c6c5c18f97d98bdf92b1ce043b9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6815662384033203, 'inference': 9.76705551147461, 'postprocess': 1.1243820190429688},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.0a2080c87c7d3188f8356357203b0e56.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8451213836669922, 'inference': 8.71586799621582, 'postprocess': 0.49877166748046875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.3377a5ba4a0dc953bac7e48a7a02c227.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.768350601196289, 'inference': 9.115457534790039, 'postprocess': 0.36787986755371094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[122, 105,  96],
         [122, 105,  96],
         [122, 105,  96],
         ...,
         [ 24,  26,  26],
         [  3,   5,   5],
         [ 12,  14,  14]],
 
        [[122, 105,  96],
         [122, 105,  96],
         [122, 105,  96],
         ...,
         [  0,   0,   0],
         [ 36,  38,  38],
         [ 39,  41,  41]],
 
        [[122, 105,  96],
         [122, 105,  96],
         [122, 105,  96],
         ...,
         [ 28,  32,  33],
         [ 67,  71,  72],
         [ 64,  68,  69]],
 
        ...,
 
        [[ 18,  18,  18],
         [ 16,  16,  16],
         [ 15,  15,  15],
         ...,
         [ 13,  11,  10],
         [ 13,  11,  10],
         [ 12,  10,   9]],
 
        [[ 15,  15,  15],
         [ 14,  14,  14],
         [ 13,  13,  13],
         ...,
         [ 18,  16,  15],
         [ 15,  13,  12],
         [ 14,  12,  11]],
 
        [[ 12,  12,  12],
         [ 11,  11,  11],
         [ 11,  11,  11],
         ...,
         [ 23,  21,  20],
         [ 18,  16,  15],
         [ 16,  14,  13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-203-_jpg.rf.8dd21e07b004f7c29a8d4f97e0a3283b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3718605041503906, 'inference': 9.80997085571289, 'postprocess': 0.3807544708251953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        ...,
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]],
 
        [[94, 94, 94],
         [94, 94, 94],
         [94, 94, 94],
         ...,
         [94, 94, 94],
         [94, 94, 94],
         [94, 94, 94]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.4213f6cdf3dee589a56e5aad14500784.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.386808395385742, 'inference': 8.787870407104492, 'postprocess': 0.8249282836914062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[127, 127, 127],
         [127, 127, 127],
         [127, 127, 127],
         ...,
         [127, 127, 127],
         [127, 127, 127],
         [127, 127, 127]],
 
        [[127, 127, 127],
         [127, 127, 127],
         [127, 127, 127],
         ...,
         [127, 127, 127],
         [127, 127, 127],
         [127, 127, 127]],
 
        [[127, 127, 127],
         [127, 127, 127],
         [127, 127, 127],
         ...,
         [127, 127, 127],
         [127, 127, 127],
         [127, 127, 127]],
 
        ...,
 
        [[127, 127, 127],
         [127, 127, 127],
         [127, 127, 127],
         ...,
         [127, 127, 127],
         [127, 127, 127],
         [127, 127, 127]],
 
        [[127, 127, 127],
         [127, 127, 127],
         [127, 127, 127],
         ...,
         [127, 127, 127],
         [127, 127, 127],
         [127, 127, 127]],
 
        [[127, 127, 127],
         [127, 127, 127],
         [127, 127, 127],
         ...,
         [127, 127, 127],
         [127, 127, 127],
         [127, 127, 127]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.5e77130a98b6e44f7347f3fa12d59989.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4979839324951172, 'inference': 8.723974227905273, 'postprocess': 0.3631114959716797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[128, 124, 130],
         [100,  96, 102],
         [138, 132, 137],
         ...,
         [201, 188, 186],
         [219, 207, 203],
         [243, 231, 227]],
 
        [[180, 176, 182],
         [140, 136, 141],
         [212, 206, 211],
         ...,
         [228, 216, 214],
         [251, 239, 235],
         [246, 235, 231]],
 
        [[125, 124, 128],
         [142, 141, 145],
         [170, 166, 171],
         ...,
         [223, 214, 211],
         [240, 228, 226],
         [220, 211, 208]],
 
        ...,
 
        [[ 80,  79,  81],
         [ 95,  94,  96],
         [ 99,  98, 100],
         ...,
         [ 73,  69,  74],
         [ 73,  69,  74],
         [ 70,  66,  71]],
 
        [[ 64,  63,  65],
         [ 74,  73,  75],
         [ 77,  76,  78],
         ...,
         [ 65,  61,  67],
         [ 68,  64,  70],
         [ 66,  62,  68]],
 
        [[ 66,  65,  67],
         [ 65,  64,  66],
         [ 65,  64,  66],
         ...,
         [ 76,  72,  78],
         [ 76,  72,  78],
         [ 74,  70,  76]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-206-_jpg.rf.72255834e8accc349443c0b769bd3cfc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7018318176269531, 'inference': 8.683204650878906, 'postprocess': 0.3693103790283203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 11,  12,   8],
         [ 11,  12,   8],
         [ 11,  12,   8],
         ...,
         [  7,  12,  11],
         [  7,  12,  11],
         [  7,  12,  11]],
 
        [[ 11,  12,   8],
         [ 11,  12,   8],
         [ 11,  12,   8],
         ...,
         [  7,  12,  11],
         [  7,  12,  11],
         [  7,  12,  11]],
 
        [[  9,  12,  10],
         [  9,  12,  10],
         [  9,  12,  10],
         ...,
         [  7,  12,  11],
         [  7,  12,  11],
         [  7,  12,  11]],
 
        ...,
 
        [[ 11,  11,  11],
         [ 11,  11,  11],
         [ 11,  11,  11],
         ...,
         [178, 178, 178],
         [181, 181, 181],
         [181, 181, 181]],
 
        [[ 11,  11,  11],
         [ 11,  11,  11],
         [ 11,  11,  11],
         ...,
         [171, 171, 171],
         [173, 173, 173],
         [172, 172, 172]],
 
        [[ 11,  11,  11],
         [ 11,  11,  11],
         [ 11,  11,  11],
         ...,
         [ 77,  77,  77],
         [ 77,  77,  77],
         [ 76,  76,  76]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.0b505406debb2b509daccf0ebbb62d42.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4777183532714844, 'inference': 9.029626846313477, 'postprocess': 0.3566741943359375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.4facc206ce5e1fac516bd765c34f7972.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6062259674072266, 'inference': 8.556842803955078, 'postprocess': 0.33473968505859375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[143, 137, 124],
         [143, 137, 124],
         [142, 136, 123],
         ...,
         [ 67,  73,  68],
         [104, 110, 105],
         [128, 134, 129]],
 
        [[137, 131, 118],
         [137, 131, 118],
         [136, 130, 117],
         ...,
         [ 72,  78,  73],
         [113, 119, 114],
         [138, 144, 139]],
 
        [[126, 120, 107],
         [126, 120, 107],
         [125, 119, 106],
         ...,
         [ 80,  86,  81],
         [119, 125, 120],
         [140, 146, 141]],
 
        ...,
 
        [[ 95, 100, 109],
         [ 92,  97, 106],
         [101, 106, 115],
         ...,
         [ 94,  96,  96],
         [ 81,  83,  83],
         [ 72,  74,  74]],
 
        [[ 96, 101, 110],
         [ 98, 103, 112],
         [105, 110, 119],
         ...,
         [ 94,  96,  96],
         [ 82,  84,  84],
         [ 73,  75,  75]],
 
        [[ 98, 103, 112],
         [103, 108, 117],
         [110, 115, 124],
         ...,
         [ 93,  95,  95],
         [ 82,  84,  84],
         [ 73,  75,  75]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-207-_jpg.rf.b4c0b6220ddb190aee07dfd59ffd4277.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.705169677734375, 'inference': 9.02700424194336, 'postprocess': 0.8685588836669922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[172, 170, 162],
         [168, 166, 158],
         [162, 160, 152],
         ...,
         [200, 208, 207],
         [200, 208, 207],
         [197, 205, 204]],
 
        [[153, 151, 143],
         [156, 154, 146],
         [161, 159, 151],
         ...,
         [196, 204, 203],
         [197, 205, 204],
         [195, 203, 202]],
 
        [[174, 175, 166],
         [185, 186, 177],
         [198, 199, 190],
         ...,
         [191, 199, 198],
         [192, 200, 199],
         [192, 200, 199]],
 
        ...,
 
        [[ 60,  65,  68],
         [ 58,  63,  64],
         [ 58,  63,  64],
         ...,
         [124, 127, 125],
         [125, 128, 126],
         [126, 129, 127]],
 
        [[ 59,  63,  68],
         [ 57,  62,  65],
         [ 56,  61,  64],
         ...,
         [128, 131, 129],
         [128, 131, 129],
         [127, 130, 128]],
 
        [[ 61,  65,  70],
         [ 59,  63,  68],
         [ 57,  62,  65],
         ...,
         [130, 133, 131],
         [129, 132, 130],
         [127, 130, 128]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.2a110ddd516f4ba59951afbf405d42a5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.407623291015625, 'inference': 10.537385940551758, 'postprocess': 0.38933753967285156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        ...,
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.a7d61ad38189d19f47b2407d4c2455fb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7588138580322266, 'inference': 8.76927375793457, 'postprocess': 0.6878376007080078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        ...,
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]],
 
        [[46, 46, 46],
         [46, 46, 46],
         [46, 46, 46],
         ...,
         [46, 46, 46],
         [46, 46, 46],
         [46, 46, 46]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-208-_jpg.rf.b11d7439f1c22388eac3f6705cb9e9e4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3167858123779297, 'inference': 9.105443954467773, 'postprocess': 0.6241798400878906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[202, 198, 197],
         [206, 201, 200],
         [244, 236, 237],
         ...,
         [196, 206, 213],
         [190, 198, 205],
         [200, 208, 215]],
 
        [[208, 204, 203],
         [207, 202, 201],
         [210, 202, 203],
         ...,
         [197, 207, 214],
         [192, 200, 207],
         [200, 208, 215]],
 
        [[200, 196, 195],
         [214, 209, 208],
         [160, 152, 153],
         ...,
         [200, 209, 218],
         [194, 202, 209],
         [199, 207, 214]],
 
        ...,
 
        [[116, 132, 144],
         [107, 123, 135],
         [ 90, 106, 118],
         ...,
         [153, 160, 175],
         [146, 149, 164],
         [147, 150, 164]],
 
        [[135, 153, 164],
         [125, 143, 154],
         [ 86, 102, 114],
         ...,
         [141, 148, 163],
         [142, 145, 160],
         [148, 149, 163]],
 
        [[155, 173, 184],
         [139, 157, 168],
         [ 67,  83,  95],
         ...,
         [156, 161, 176],
         [136, 139, 154],
         [129, 130, 144]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.31dc8d894956f53d54a5cec0f94c5e79.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7545223236083984, 'inference': 8.957147598266602, 'postprocess': 0.43582916259765625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.b341c07e4c85101f52a39109ebb299b0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8379688262939453, 'inference': 8.750438690185547, 'postprocess': 0.3561973571777344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  1,  0],
         ...,
         [37, 45, 52],
         [60, 68, 75],
         [82, 90, 97]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  1,  0],
         ...,
         [24, 30, 37],
         [36, 42, 49],
         [54, 60, 67]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  1,  0],
         ...,
         [17, 23, 30],
         [18, 24, 31],
         [28, 34, 41]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-21-_jpg.rf.e193c5d94e2cc8ef9b365e8d95e806b1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3794898986816406, 'inference': 9.06991958618164, 'postprocess': 0.8103847503662109},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 93, 135, 148],
         [ 88, 130, 143],
         [112, 154, 167],
         ...,
         [118, 218, 190],
         [116, 215, 189],
         [109, 208, 182]],
 
        [[145, 183, 195],
         [129, 169, 181],
         [132, 170, 182],
         ...,
         [129, 228, 202],
         [134, 233, 207],
         [124, 223, 197]],
 
        [[179, 212, 221],
         [162, 198, 206],
         [148, 180, 191],
         ...,
         [125, 223, 199],
         [133, 231, 207],
         [127, 225, 201]],
 
        ...,
 
        [[ 57,  47,  40],
         [ 57,  47,  40],
         [ 57,  47,  40],
         ...,
         [ 57,  47,  40],
         [ 57,  47,  40],
         [ 57,  47,  40]],
 
        [[ 57,  47,  40],
         [ 57,  47,  40],
         [ 57,  47,  40],
         ...,
         [ 57,  47,  40],
         [ 57,  47,  40],
         [ 57,  47,  40]],
 
        [[ 57,  47,  40],
         [ 57,  47,  40],
         [ 57,  47,  40],
         ...,
         [ 57,  47,  40],
         [ 57,  47,  40],
         [ 57,  47,  40]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.4b2ea541aa7fb1277177d6b23ebb385d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.878499984741211, 'inference': 11.738777160644531, 'postprocess': 1.0569095611572266},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[18, 13, 10],
         [18, 13, 10],
         [18, 13, 10],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[18, 13, 10],
         [18, 13, 10],
         [18, 13, 10],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[18, 13, 10],
         [18, 13, 10],
         [18, 13, 10],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.7d87d7b5337a40b2c80ce816e643376a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4390945434570312, 'inference': 9.259223937988281, 'postprocess': 0.6256103515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-210-_jpg.rf.d00f21d9a21dd0244263a64b8bda2348.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8336772918701172, 'inference': 12.685775756835938, 'postprocess': 0.7536411285400391},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 68,  91,  99],
         [ 65,  88,  96],
         [108, 131, 139],
         ...,
         [ 24,  30,  25],
         [ 21,  28,  23],
         [ 20,  27,  22]],
 
        [[ 68,  91,  99],
         [ 65,  88,  96],
         [109, 132, 140],
         ...,
         [ 25,  31,  26],
         [ 22,  29,  24],
         [ 21,  28,  23]],
 
        [[ 67,  90,  98],
         [ 64,  87,  95],
         [107, 130, 138],
         ...,
         [ 23,  29,  24],
         [ 21,  28,  23],
         [ 20,  27,  22]],
 
        ...,
 
        [[ 81,  80,  89],
         [ 78,  77,  86],
         [ 76,  75,  84],
         ...,
         [ 75,  68,  71],
         [ 76,  69,  72],
         [ 77,  70,  73]],
 
        [[ 82,  81,  90],
         [ 80,  79,  88],
         [ 77,  76,  85],
         ...,
         [ 74,  67,  70],
         [ 75,  68,  71],
         [ 76,  69,  72]],
 
        [[ 82,  81,  90],
         [ 80,  79,  88],
         [ 77,  76,  85],
         ...,
         [ 74,  67,  70],
         [ 75,  68,  71],
         [ 76,  69,  72]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.4eb10110d12e7623cb7be8caf4f66c5a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.352548599243164, 'inference': 8.53109359741211, 'postprocess': 0.6568431854248047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        ...,
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.4f06bc1e4c4ca8189e8136ed45695acc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.047300338745117, 'inference': 14.060735702514648, 'postprocess': 0.8141994476318359},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-211-_jpg.rf.9de311e1f9663a4ed2159ebc521295e7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9810199737548828, 'inference': 8.61358642578125, 'postprocess': 0.3616809844970703},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.19e0e3168e988c6c8f8829f34c68003b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3904571533203125, 'inference': 9.133577346801758, 'postprocess': 0.37026405334472656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.d80a26f98663f0c2a92282a15fbf262b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8491744995117188, 'inference': 11.045694351196289, 'postprocess': 0.39076805114746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[194, 228, 244],
         [193, 227, 243],
         [192, 226, 242],
         ...,
         [158, 163, 166],
         [143, 148, 151],
         [123, 128, 131]],
 
        [[200, 234, 250],
         [200, 234, 250],
         [200, 234, 250],
         ...,
         [134, 139, 142],
         [124, 129, 132],
         [132, 137, 140]],
 
        [[201, 235, 251],
         [202, 236, 252],
         [203, 237, 253],
         ...,
         [167, 172, 175],
         [153, 158, 161],
         [131, 136, 139]],
 
        ...,
 
        [[122, 126, 127],
         [111, 115, 116],
         [ 86,  90,  91],
         ...,
         [100, 108, 108],
         [ 89,  94,  95],
         [ 79,  87,  87]],
 
        [[161, 165, 166],
         [148, 152, 153],
         [118, 122, 123],
         ...,
         [112, 117, 118],
         [101, 105, 106],
         [ 90,  95,  96]],
 
        [[104, 108, 109],
         [105, 109, 110],
         [102, 106, 107],
         ...,
         [120, 124, 125],
         [112, 116, 117],
         [103, 107, 108]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-212-_jpg.rf.e36dc9e60b7e977f6e7d2d1a323b9c73.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.581430435180664, 'inference': 8.725881576538086, 'postprocess': 0.44536590576171875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 42,  64,  59],
         [116, 138, 133],
         [130, 153, 148],
         ...,
         [150, 143, 116],
         [168, 160, 137],
         [ 56,  49,  29]],
 
        [[ 17,  34,  30],
         [ 51,  72,  64],
         [110, 130, 125],
         ...,
         [ 93,  88,  63],
         [115, 110,  89],
         [ 58,  52,  33]],
 
        [[  0,   8,   2],
         [  0,  10,   2],
         [ 18,  32,  26],
         ...,
         [ 31,  27,   8],
         [ 37,  35,  17],
         [ 19,  16,   1]],
 
        ...,
 
        [[ 60,  74,  26],
         [ 64,  77,  31],
         [ 73,  87,  45],
         ...,
         [  5,   1,   0],
         [  5,   2,   0],
         [ 11,   5,   0]],
 
        [[ 82,  97,  46],
         [ 80,  94,  46],
         [ 91, 104,  60],
         ...,
         [  8,   5,   0],
         [  6,   3,   0],
         [  6,   4,   0]],
 
        [[ 94, 110,  57],
         [ 86, 101,  50],
         [100, 113,  69],
         ...,
         [  6,   6,   0],
         [  6,   3,   0],
         [  5,   3,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.27fc3b4425584f6404f2f0feb976f621.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6982555389404297, 'inference': 8.826017379760742, 'postprocess': 0.3638267517089844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        ...,
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 7, 3],
         [6, 7, 3],
         [6, 8, 2]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 7, 5],
         [6, 7, 5],
         [6, 7, 3]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 7, 5],
         [6, 7, 5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.74655743f4f3d67bb2e21be9727a7946.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7638206481933594, 'inference': 8.790016174316406, 'postprocess': 0.4105567932128906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-214-_jpg.rf.d45b506908081039adeb183e4ca51da8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4824867248535156, 'inference': 12.519121170043945, 'postprocess': 0.6740093231201172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.40ad961da5aeef8f6c97d772ee2b618e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.733541488647461, 'inference': 8.619546890258789, 'postprocess': 0.8919239044189453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.d190a911a9e6195bd2a9e3c67869064a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2824535369873047, 'inference': 8.670330047607422, 'postprocess': 0.3952980041503906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,  60,  48],
         [  0,  62,  50],
         [  0,  63,  51],
         ...,
         [121, 119, 119],
         [120, 118, 118],
         [119, 117, 117]],
 
        [[  0,  62,  50],
         [  0,  63,  51],
         [  0,  64,  52],
         ...,
         [120, 118, 118],
         [119, 117, 117],
         [118, 116, 116]],
 
        [[  0,  63,  51],
         [  0,  64,  52],
         [  1,  65,  53],
         ...,
         [120, 118, 118],
         [119, 117, 117],
         [119, 117, 117]],
 
        ...,
 
        [[143, 155, 159],
         [144, 156, 160],
         [145, 157, 161],
         ...,
         [ 89,  91,  92],
         [ 87,  89,  90],
         [ 89,  91,  92]],
 
        [[143, 155, 159],
         [144, 156, 160],
         [145, 157, 161],
         ...,
         [ 89,  91,  92],
         [ 87,  89,  90],
         [ 89,  91,  92]],
 
        [[143, 155, 159],
         [144, 156, 160],
         [145, 157, 161],
         ...,
         [ 89,  91,  92],
         [ 87,  89,  90],
         [ 89,  91,  92]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-215-_jpg.rf.ff49694bdd544a47be71713dc6c46593.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.1483898162841797, 'inference': 14.032125473022461, 'postprocess': 0.39386749267578125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        ...,
 
        [[131, 127, 116],
         [136, 132, 121],
         [137, 133, 122],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[138, 134, 123],
         [142, 138, 127],
         [140, 136, 125],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[143, 139, 128],
         [146, 142, 131],
         [143, 139, 128],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.456e08f670a110afa6a40b982a029cba.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3060569763183594, 'inference': 8.616924285888672, 'postprocess': 1.02996826171875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   3],
         [  1,   5,   6],
         [  0,   0,   1],
         ...,
         [ 96,  88,  88],
         [ 90,  82,  82],
         [ 83,  75,  75]],
 
        [[  0,   0,   3],
         [  1,   5,   6],
         [  0,   0,   1],
         ...,
         [ 98,  90,  90],
         [ 93,  85,  85],
         [ 88,  80,  80]],
 
        [[  0,   0,   3],
         [  1,   5,   6],
         [  0,   0,   1],
         ...,
         [100,  92,  92],
         [ 97,  89,  89],
         [ 93,  85,  85]],
 
        ...,
 
        [[  4,   0,   0],
         [  4,   0,   0],
         [  2,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  4,   0,   0],
         [  4,   0,   0],
         [  2,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  4,   0,   0],
         [  4,   0,   0],
         [  2,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.9b0074a18a22ac4ecb7f30b6dabe3fa5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8992424011230469, 'inference': 8.531332015991211, 'postprocess': 0.3676414489746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 83,  79,  78],
         [ 89,  85,  84],
         [ 93,  89,  88],
         ...,
         [133, 107, 100],
         [134, 108, 101],
         [134, 108, 101]],
 
        [[ 83,  79,  78],
         [ 87,  83,  82],
         [ 90,  86,  85],
         ...,
         [133, 107, 100],
         [133, 107, 100],
         [133, 107, 100]],
 
        [[ 83,  79,  78],
         [ 84,  80,  79],
         [ 86,  82,  81],
         ...,
         [132, 106,  99],
         [132, 106,  99],
         [132, 106,  99]],
 
        ...,
 
        [[108,  95,  93],
         [107,  94,  92],
         [100,  87,  85],
         ...,
         [ 80,  83,  88],
         [ 71,  74,  79],
         [ 65,  68,  73]],
 
        [[110,  97,  95],
         [108,  95,  93],
         [101,  88,  86],
         ...,
         [ 81,  84,  89],
         [ 70,  73,  78],
         [ 63,  66,  71]],
 
        [[111,  98,  96],
         [108,  95,  93],
         [101,  88,  86],
         ...,
         [ 82,  85,  90],
         [ 70,  73,  78],
         [ 62,  65,  70]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-216-_jpg.rf.ad6fbe4b6c5100ec699f1262c74a5988.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.680612564086914, 'inference': 8.92186164855957, 'postprocess': 0.38933753967285156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.6bb67326dc3fab2b66c9c65a3364504c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.527547836303711, 'inference': 10.673284530639648, 'postprocess': 0.39076805114746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 75,  93, 100],
         [ 75,  93, 100],
         [ 75,  93, 100],
         ...,
         [ 83, 101, 108],
         [ 90, 108, 115],
         [ 72,  90,  97]],
 
        [[ 67,  85,  92],
         [ 67,  85,  92],
         [ 67,  85,  92],
         ...,
         [ 66,  84,  91],
         [ 80,  96, 103],
         [ 70,  88,  95]],
 
        [[ 52,  68,  75],
         [ 52,  68,  75],
         [ 53,  69,  76],
         ...,
         [ 61,  77,  84],
         [ 71,  84,  92],
         [ 66,  82,  89]],
 
        ...,
 
        [[ 62,  66,  77],
         [ 53,  57,  68],
         [ 26,  30,  41],
         ...,
         [ 68,  70,  78],
         [ 66,  68,  78],
         [ 79,  81,  91]],
 
        [[ 74,  78,  89],
         [ 63,  67,  78],
         [ 32,  36,  47],
         ...,
         [ 57,  59,  67],
         [ 69,  71,  81],
         [ 71,  73,  83]],
 
        [[ 73,  77,  88],
         [ 62,  66,  77],
         [ 32,  36,  47],
         ...,
         [ 60,  62,  70],
         [ 80,  81,  91],
         [ 54,  56,  66]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.de0280b56ab0a3f21fab3b5986a16080.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9414424896240234, 'inference': 8.578300476074219, 'postprocess': 0.3647804260253906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[20, 20, 20],
         [20, 20, 20],
         [20, 20, 20],
         ...,
         [20, 20, 20],
         [20, 20, 20],
         [20, 20, 20]],
 
        [[20, 20, 20],
         [20, 20, 20],
         [20, 20, 20],
         ...,
         [20, 20, 20],
         [20, 20, 20],
         [20, 20, 20]],
 
        [[20, 20, 20],
         [20, 20, 20],
         [20, 20, 20],
         ...,
         [20, 20, 20],
         [20, 20, 20],
         [20, 20, 20]],
 
        ...,
 
        [[20, 20, 20],
         [20, 20, 20],
         [20, 20, 20],
         ...,
         [20, 20, 20],
         [20, 20, 20],
         [20, 20, 20]],
 
        [[20, 20, 20],
         [20, 20, 20],
         [20, 20, 20],
         ...,
         [20, 20, 20],
         [20, 20, 20],
         [20, 20, 20]],
 
        [[20, 20, 20],
         [20, 20, 20],
         [20, 20, 20],
         ...,
         [20, 20, 20],
         [20, 20, 20],
         [20, 20, 20]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-217-_jpg.rf.f71278c900f04d9ef934d1671e450fbf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4336109161376953, 'inference': 13.628721237182617, 'postprocess': 0.3871917724609375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        ...,
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.1becdc6413b7b22fdf55ade9f266316e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.708984375, 'inference': 9.24539566040039, 'postprocess': 0.3516674041748047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[142, 168, 215],
         [141, 167, 214],
         [143, 169, 215],
         ...,
         [ 40,  45,  48],
         [ 40,  45,  48],
         [ 41,  46,  49]],
 
        [[147, 173, 220],
         [146, 172, 218],
         [146, 172, 218],
         ...,
         [ 40,  45,  48],
         [ 39,  44,  47],
         [ 40,  45,  48]],
 
        [[149, 173, 219],
         [147, 171, 217],
         [146, 170, 216],
         ...,
         [ 40,  45,  48],
         [ 39,  44,  47],
         [ 40,  45,  48]],
 
        ...,
 
        [[ 65,  69,  70],
         [ 64,  68,  69],
         [ 64,  68,  69],
         ...,
         [ 63,  65,  65],
         [ 63,  65,  65],
         [ 63,  65,  65]],
 
        [[ 65,  69,  70],
         [ 65,  69,  70],
         [ 64,  68,  69],
         ...,
         [ 62,  64,  64],
         [ 62,  64,  64],
         [ 62,  64,  64]],
 
        [[ 65,  69,  70],
         [ 65,  69,  70],
         [ 65,  69,  70],
         ...,
         [ 62,  64,  64],
         [ 62,  64,  64],
         [ 62,  64,  64]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.d9c8cdd8aea8314208624edb692b09cb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8737316131591797, 'inference': 8.455991744995117, 'postprocess': 0.4138946533203125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 5, 3],
         [2, 5, 3],
         [4, 5, 3],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[2, 5, 3],
         [2, 5, 3],
         [4, 5, 3],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[2, 4, 4],
         [2, 4, 4],
         [4, 5, 3],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        ...,
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-218-_jpg.rf.da6e0c0a3dd3854e5710bcbe50478725.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2745857238769531, 'inference': 9.550809860229492, 'postprocess': 0.43964385986328125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[171, 185, 184],
         [180, 194, 193],
         [190, 204, 203],
         ...,
         [178, 189, 193],
         [181, 192, 196],
         [177, 188, 192]],
 
        [[175, 189, 188],
         [182, 196, 195],
         [189, 203, 202],
         ...,
         [176, 187, 191],
         [179, 190, 194],
         [178, 189, 193]],
 
        [[178, 192, 191],
         [182, 196, 195],
         [185, 199, 198],
         ...,
         [176, 187, 191],
         [176, 187, 191],
         [178, 189, 193]],
 
        ...,
 
        [[129, 126, 128],
         [130, 127, 129],
         [ 76,  75,  77],
         ...,
         [126, 133, 136],
         [125, 132, 135],
         [125, 132, 135]],
 
        [[145, 142, 144],
         [139, 136, 138],
         [ 87,  84,  86],
         ...,
         [121, 128, 131],
         [114, 121, 124],
         [111, 118, 121]],
 
        [[134, 131, 133],
         [125, 122, 124],
         [ 80,  77,  79],
         ...,
         [123, 130, 133],
         [116, 123, 126],
         [113, 120, 123]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.9f723a6b8ef272c7a5899faf7f892aee.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.981973648071289, 'inference': 8.67605209350586, 'postprocess': 0.7054805755615234},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.a0b3e7cf4174b760f731630a0d8ffcda.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3346672058105469, 'inference': 8.50677490234375, 'postprocess': 0.4105567932128906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   3],
         [  0,   0,   3],
         [  0,   0,   1],
         ...,
         [137, 153, 160],
         [136, 152, 159],
         [ 99, 115, 122]],
 
        [[  0,   0,   3],
         [  0,   0,   3],
         [  0,   0,   1],
         ...,
         [136, 152, 159],
         [137, 153, 160],
         [102, 118, 125]],
 
        [[  0,   0,   3],
         [  0,   0,   3],
         [  0,   0,   1],
         ...,
         [135, 151, 158],
         [138, 154, 161],
         [105, 121, 128]],
 
        ...,
 
        [[  2,   0,   0],
         [  2,   0,   0],
         [  2,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-219-_jpg.rf.aa439f808046db1dd790b1dd73aec45f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.672983169555664, 'inference': 9.1705322265625, 'postprocess': 0.38170814514160156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[39, 39, 39],
         [39, 39, 39],
         [39, 39, 39],
         ...,
         [39, 39, 39],
         [39, 39, 39],
         [39, 39, 39]],
 
        [[39, 39, 39],
         [39, 39, 39],
         [39, 39, 39],
         ...,
         [39, 39, 39],
         [39, 39, 39],
         [39, 39, 39]],
 
        [[39, 39, 39],
         [39, 39, 39],
         [39, 39, 39],
         ...,
         [39, 39, 39],
         [39, 39, 39],
         [39, 39, 39]],
 
        ...,
 
        [[39, 39, 39],
         [39, 39, 39],
         [39, 39, 39],
         ...,
         [39, 39, 39],
         [39, 39, 39],
         [39, 39, 39]],
 
        [[39, 39, 39],
         [39, 39, 39],
         [39, 39, 39],
         ...,
         [39, 39, 39],
         [39, 39, 39],
         [39, 39, 39]],
 
        [[39, 39, 39],
         [39, 39, 39],
         [39, 39, 39],
         ...,
         [39, 39, 39],
         [39, 39, 39],
         [39, 39, 39]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.0ec6700cefc477019e71e49c69ad09c0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3546943664550781, 'inference': 8.531808853149414, 'postprocess': 0.40841102600097656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[228, 236, 226],
         [228, 236, 226],
         [228, 236, 226],
         ...,
         [239, 245, 240],
         [239, 245, 240],
         [240, 246, 241]],
 
        [[228, 236, 226],
         [228, 236, 226],
         [228, 236, 226],
         ...,
         [239, 245, 240],
         [239, 245, 240],
         [240, 246, 241]],
 
        [[228, 236, 226],
         [228, 236, 226],
         [228, 236, 226],
         ...,
         [239, 245, 240],
         [239, 245, 240],
         [240, 246, 241]],
 
        ...,
 
        [[ 77,  90,  92],
         [ 79,  92,  94],
         [ 79,  94,  96],
         ...,
         [ 54,  62,  79],
         [ 55,  63,  80],
         [ 54,  62,  79]],
 
        [[ 79,  92,  94],
         [ 82,  95,  97],
         [ 83,  98, 101],
         ...,
         [ 59,  68,  82],
         [ 59,  67,  84],
         [ 57,  65,  82]],
 
        [[ 79,  92,  94],
         [ 82,  95,  97],
         [ 85, 100, 103],
         ...,
         [ 64,  73,  87],
         [ 64,  72,  89],
         [ 61,  69,  86]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.50845450b158301ab47748beb98fcf79.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7468929290771484, 'inference': 8.867025375366211, 'postprocess': 0.4029273986816406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [32, 32, 32],
         [31, 31, 31],
         [29, 29, 29]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [30, 30, 30],
         [30, 30, 30]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [33, 33, 33],
         [34, 34, 34],
         [36, 36, 36]],
 
        ...,
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[31, 31, 31],
         [31, 31, 31],
         [31, 31, 31],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-220-_jpg.rf.577cbbb4c72285178adaa8c046e4f59d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8682479858398438, 'inference': 8.441448211669922, 'postprocess': 0.35262107849121094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[131, 123, 133],
         [133, 125, 135],
         [135, 127, 137],
         ...,
         [115, 114, 118],
         [113, 112, 116],
         [113, 112, 116]],
 
        [[130, 122, 132],
         [131, 123, 133],
         [132, 124, 134],
         ...,
         [117, 116, 120],
         [115, 114, 118],
         [115, 114, 118]],
 
        [[119, 114, 123],
         [121, 116, 125],
         [123, 118, 127],
         ...,
         [119, 118, 122],
         [118, 117, 121],
         [117, 116, 120]],
 
        ...,
 
        [[ 51,  54,  58],
         [ 54,  57,  61],
         [ 57,  60,  65],
         ...,
         [117, 126, 139],
         [119, 128, 141],
         [119, 128, 141]],
 
        [[ 45,  48,  52],
         [ 49,  52,  56],
         [ 54,  57,  62],
         ...,
         [114, 124, 134],
         [116, 126, 136],
         [117, 127, 137]],
 
        [[ 41,  44,  48],
         [ 46,  49,  53],
         [ 52,  55,  60],
         ...,
         [112, 122, 132],
         [115, 125, 135],
         [115, 125, 135]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.4210790f4f714436b3d5ee9671a99005.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.447439193725586, 'inference': 9.065628051757812, 'postprocess': 0.5941390991210938},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 1, 0],
         [0, 1, 0],
         [0, 1, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 1, 0],
         [0, 1, 0],
         [0, 1, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 1, 0],
         [0, 1, 0],
         [0, 1, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.6280cd42dfe06a2d66148f5b5af6eb1b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7175674438476562, 'inference': 8.599281311035156, 'postprocess': 0.54168701171875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-221-_jpg.rf.a2e98283cbb1e83a8af07620af2cb3d6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.268625259399414, 'inference': 9.122133255004883, 'postprocess': 0.3571510314941406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[251, 235, 188],
         [251, 235, 188],
         [251, 235, 188],
         ...,
         [ 28,  28,  28],
         [ 29,  29,  29],
         [ 31,  31,  31]],
 
        [[251, 235, 188],
         [251, 235, 188],
         [252, 236, 189],
         ...,
         [ 27,  27,  27],
         [ 29,  29,  29],
         [ 30,  30,  30]],
 
        [[251, 235, 189],
         [252, 236, 190],
         [252, 236, 190],
         ...,
         [ 26,  26,  26],
         [ 27,  27,  27],
         [ 29,  29,  29]],
 
        ...,
 
        [[  8,   8,   8],
         [ 11,  11,  11],
         [ 15,  15,  15],
         ...,
         [ 35,  33,  33],
         [ 36,  34,  34],
         [ 19,  17,  17]],
 
        [[  8,   8,   8],
         [ 12,  12,  12],
         [  9,   9,   9],
         ...,
         [ 35,  30,  31],
         [ 45,  40,  41],
         [ 30,  25,  26]],
 
        [[  2,   2,   2],
         [  8,   8,   8],
         [  6,   6,   6],
         ...,
         [ 31,  26,  27],
         [ 49,  44,  45],
         [ 39,  34,  35]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.159340ca71da523b0e2a61122f85d352.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.695871353149414, 'inference': 11.456966400146484, 'postprocess': 0.8022785186767578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[33, 33, 33],
         [33, 33, 33],
         [33, 33, 33],
         ...,
         [33, 33, 33],
         [33, 33, 33],
         [33, 33, 33]],
 
        [[33, 33, 33],
         [33, 33, 33],
         [33, 33, 33],
         ...,
         [33, 33, 33],
         [33, 33, 33],
         [33, 33, 33]],
 
        [[33, 33, 33],
         [33, 33, 33],
         [33, 33, 33],
         ...,
         [33, 33, 33],
         [33, 33, 33],
         [33, 33, 33]],
 
        ...,
 
        [[33, 33, 33],
         [33, 33, 33],
         [33, 33, 33],
         ...,
         [33, 33, 33],
         [33, 33, 33],
         [33, 33, 33]],
 
        [[33, 33, 33],
         [33, 33, 33],
         [33, 33, 33],
         ...,
         [33, 33, 33],
         [33, 33, 33],
         [33, 33, 33]],
 
        [[33, 33, 33],
         [33, 33, 33],
         [33, 33, 33],
         ...,
         [33, 33, 33],
         [33, 33, 33],
         [33, 33, 33]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.1dbe9dca4ca6a1f1f88b41787b9a691c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9948482513427734, 'inference': 12.990951538085938, 'postprocess': 0.3943443298339844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 1, 0],
         [0, 0, 1],
         [0, 0, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 1],
         [2, 0, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 0],
         [4, 0, 0],
         [4, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-222-_jpg.rf.a5ea9340a3f317eab9bc842a8d252835.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5943050384521484, 'inference': 9.09113883972168, 'postprocess': 0.3619194030761719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        ...,
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.04b3324ec3044431090e8b9359b88bf7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6903877258300781, 'inference': 8.766651153564453, 'postprocess': 0.3941059112548828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 88,  96,  95],
         [ 89,  97,  96],
         [ 94, 102, 101],
         ...,
         [102, 114, 124],
         [102, 114, 124],
         [103, 115, 125]],
 
        [[ 85,  93,  92],
         [ 89,  97,  96],
         [ 97, 105, 104],
         ...,
         [102, 114, 124],
         [102, 114, 124],
         [103, 115, 125]],
 
        [[ 82,  90,  89],
         [ 88,  96,  95],
         [ 98, 106, 105],
         ...,
         [102, 114, 124],
         [102, 114, 124],
         [102, 114, 124]],
 
        ...,
 
        [[ 68,  67,  63],
         [ 70,  69,  65],
         [ 68,  69,  67],
         ...,
         [ 67,  67,  67],
         [ 67,  67,  67],
         [ 67,  67,  67]],
 
        [[ 70,  67,  62],
         [ 70,  69,  65],
         [ 68,  69,  67],
         ...,
         [ 67,  67,  67],
         [ 67,  67,  67],
         [ 67,  67,  67]],
 
        [[ 70,  67,  62],
         [ 71,  70,  66],
         [ 71,  69,  68],
         ...,
         [ 67,  67,  67],
         [ 67,  67,  67],
         [ 67,  67,  67]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.9d3f63dd5136bc8b5e16b4fdf3e5b5e7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3699531555175781, 'inference': 8.72182846069336, 'postprocess': 0.37407875061035156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  7,  13,  12],
         [  1,   7,   6],
         [  1,   7,   6],
         ...,
         [ 24,  31,  40],
         [ 26,  33,  42],
         [ 27,  34,  43]],
 
        [[ 10,  16,  15],
         [  4,  10,   9],
         [  3,   9,   8],
         ...,
         [ 24,  31,  40],
         [ 26,  33,  42],
         [ 28,  35,  44]],
 
        [[ 14,  20,  19],
         [  8,  14,  13],
         [  5,  11,  10],
         ...,
         [ 23,  30,  39],
         [ 26,  33,  42],
         [ 29,  36,  45]],
 
        ...,
 
        [[ 63,  70,  90],
         [ 63,  70,  90],
         [ 65,  72,  91],
         ...,
         [117, 119, 130],
         [115, 117, 128],
         [117, 119, 130]],
 
        [[ 48,  55,  75],
         [ 58,  65,  85],
         [ 68,  75,  94],
         ...,
         [119, 121, 132],
         [115, 117, 128],
         [115, 117, 128]],
 
        [[ 36,  43,  63],
         [ 55,  62,  82],
         [ 73,  80,  99],
         ...,
         [119, 121, 132],
         [115, 117, 128],
         [114, 116, 127]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-223-_jpg.rf.f7b0fe3cd7b84157379a0c10372ef0fc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.819610595703125, 'inference': 8.612632751464844, 'postprocess': 0.3457069396972656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        ...,
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.aa73fb95553763a3d73a6b849fa4aa11.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.425027847290039, 'inference': 8.54182243347168, 'postprocess': 0.4487037658691406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.bc36d7a2ab5872952f3237e3cb9a0b06.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6851425170898438, 'inference': 9.253501892089844, 'postprocess': 0.4191398620605469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,  17,   6],
         [  0,  12,   0],
         [ 27,  49,  37],
         ...,
         [  0,   6,   0],
         [  0,  14,   2],
         [  0,   9,   0]],
 
        [[  4,  21,  10],
         [  0,  12,   0],
         [ 11,  33,  21],
         ...,
         [  4,  26,  14],
         [ 14,  34,  22],
         [  8,  28,  16]],
 
        [[ 23,  39,  28],
         [  2,  19,   8],
         [ 20,  40,  28],
         ...,
         [ 16,  38,  26],
         [ 16,  36,  24],
         [  0,  19,   7]],
 
        ...,
 
        [[107, 111, 112],
         [124, 128, 129],
         [106, 110, 111],
         ...,
         [133, 137, 138],
         [161, 165, 166],
         [173, 177, 178]],
 
        [[ 64,  68,  69],
         [111, 115, 116],
         [104, 108, 109],
         ...,
         [145, 149, 150],
         [145, 149, 150],
         [145, 149, 150]],
 
        [[ 78,  82,  83],
         [134, 138, 139],
         [117, 121, 122],
         ...,
         [153, 157, 158],
         [139, 143, 144],
         [129, 133, 134]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-224-_jpg.rf.bd5f146daa5ac308b6b501d1c6f1d33d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7287731170654297, 'inference': 8.543968200683594, 'postprocess': 0.39124488830566406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[89, 84, 81],
         [91, 86, 83],
         [87, 82, 79],
         ...,
         [74, 65, 62],
         [75, 66, 63],
         [78, 69, 66]],
 
        [[87, 82, 79],
         [91, 86, 83],
         [91, 86, 83],
         ...,
         [73, 64, 61],
         [74, 65, 62],
         [78, 69, 66]],
 
        [[86, 81, 78],
         [89, 84, 81],
         [89, 84, 81],
         ...,
         [70, 61, 58],
         [73, 64, 61],
         [77, 68, 65]],
 
        ...,
 
        [[38, 38, 38],
         [36, 36, 36],
         [35, 35, 35],
         ...,
         [32, 31, 33],
         [31, 30, 32],
         [31, 30, 32]],
 
        [[36, 36, 36],
         [35, 35, 35],
         [37, 37, 37],
         ...,
         [32, 31, 33],
         [30, 29, 31],
         [29, 28, 30]],
 
        [[37, 37, 37],
         [35, 35, 35],
         [35, 35, 35],
         ...,
         [33, 32, 34],
         [30, 29, 31],
         [28, 27, 29]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.14efc266ef488a27f59064a50d804ca0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6818046569824219, 'inference': 9.229660034179688, 'postprocess': 0.4315376281738281},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.a751fa82eb82745f4b5f94656b4d1455.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9307136535644531, 'inference': 9.816408157348633, 'postprocess': 0.5099773406982422},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-226-_jpg.rf.b4fc5446d26d4211eece93e58f12ae73.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4576911926269531, 'inference': 8.818626403808594, 'postprocess': 0.4036426544189453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.bfb22269f25cce0b5e7ff3054f61734b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7695426940917969, 'inference': 8.44883918762207, 'postprocess': 0.4322528839111328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  8,   8,  14],
         [ 18,  18,  24],
         [ 14,  17,  22],
         ...,
         [254, 247, 228],
         [255, 246, 224],
         [255, 255, 236]],
 
        [[ 13,  13,  19],
         [ 17,  17,  23],
         [  8,  11,  16],
         ...,
         [250, 241, 221],
         [250, 239, 217],
         [255, 255, 228]],
 
        [[ 13,  13,  19],
         [ 16,  16,  22],
         [  7,  10,  15],
         ...,
         [241, 233, 210],
         [240, 230, 206],
         [255, 248, 220]],
 
        ...,
 
        [[114, 117, 125],
         [102, 105, 113],
         [ 62,  64,  72],
         ...,
         [111, 124, 140],
         [151, 164, 180],
         [170, 185, 201]],
 
        [[104, 107, 115],
         [ 73,  76,  84],
         [ 21,  23,  31],
         ...,
         [113, 128, 144],
         [111, 126, 142],
         [151, 167, 183]],
 
        [[ 87,  90,  98],
         [ 42,  45,  53],
         [  0,   0,   6],
         ...,
         [152, 167, 183],
         [ 88, 104, 120],
         [118, 134, 150]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.d1dd38a0e09eda8c0d4239a5bdedd0d5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8219947814941406, 'inference': 8.499622344970703, 'postprocess': 0.3757476806640625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[121, 121, 121],
         [121, 121, 121],
         [121, 121, 121],
         ...,
         [121, 121, 121],
         [121, 121, 121],
         [121, 121, 121]],
 
        [[121, 121, 121],
         [121, 121, 121],
         [121, 121, 121],
         ...,
         [121, 121, 121],
         [121, 121, 121],
         [121, 121, 121]],
 
        [[121, 121, 121],
         [121, 121, 121],
         [121, 121, 121],
         ...,
         [121, 121, 121],
         [121, 121, 121],
         [121, 121, 121]],
 
        ...,
 
        [[121, 121, 121],
         [121, 121, 121],
         [121, 121, 121],
         ...,
         [121, 121, 121],
         [121, 121, 121],
         [121, 121, 121]],
 
        [[121, 121, 121],
         [121, 121, 121],
         [121, 121, 121],
         ...,
         [121, 121, 121],
         [121, 121, 121],
         [121, 121, 121]],
 
        [[121, 121, 121],
         [121, 121, 121],
         [121, 121, 121],
         ...,
         [121, 121, 121],
         [121, 121, 121],
         [121, 121, 121]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-227-_jpg.rf.e6fd78cbf2dc3c11a24ccdc8ddc5ee25.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3623237609863281, 'inference': 8.903026580810547, 'postprocess': 0.36907196044921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[15, 15, 15],
         [16, 16, 16],
         [18, 18, 18],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[18, 18, 18],
         [17, 17, 17],
         [15, 15, 15],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[16, 16, 16],
         [13, 13, 13],
         [10, 10, 10],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.4152b4c3ac522f79019ca14cc242eb95.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7597675323486328, 'inference': 8.542537689208984, 'postprocess': 0.34618377685546875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        ...,
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.dfe14e39a7d78d0edb998700007564e1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4600753784179688, 'inference': 8.675575256347656, 'postprocess': 0.3650188446044922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 94,  92,  92],
         [ 85,  83,  83],
         [ 76,  74,  74],
         ...,
         [173, 175, 183],
         [141, 143, 151],
         [114, 116, 124]],
 
        [[ 85,  83,  83],
         [ 83,  81,  81],
         [ 82,  80,  80],
         ...,
         [133, 135, 143],
         [109, 111, 119],
         [127, 129, 137]],
 
        [[ 89,  87,  87],
         [ 86,  84,  84],
         [ 79,  77,  77],
         ...,
         [130, 129, 138],
         [104, 103, 112],
         [135, 134, 143]],
 
        ...,
 
        [[ 36,  34,  34],
         [ 38,  36,  36],
         [ 25,  23,  23],
         ...,
         [ 48,  56,  56],
         [ 58,  63,  64],
         [103, 111, 111]],
 
        [[ 39,  37,  37],
         [ 40,  38,  38],
         [ 27,  25,  25],
         ...,
         [ 37,  47,  47],
         [ 58,  66,  66],
         [123, 133, 133]],
 
        [[ 39,  37,  37],
         [ 41,  39,  39],
         [ 30,  28,  28],
         ...,
         [ 47,  57,  57],
         [ 57,  67,  67],
         [114, 124, 124]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-23-_jpg.rf.e7e49a6cb4809947d14a95047f49964e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.699686050415039, 'inference': 8.45789909362793, 'postprocess': 0.4813671112060547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 29,  28,  32],
         [ 35,  34,  38],
         [ 40,  39,  43],
         ...,
         [ 29,  41,  45],
         [ 68,  80,  84],
         [ 90, 102, 106]],
 
        [[ 24,  23,  27],
         [ 36,  35,  39],
         [ 46,  45,  49],
         ...,
         [ 32,  44,  48],
         [ 63,  75,  79],
         [ 78,  90,  94]],
 
        [[ 44,  43,  45],
         [ 60,  59,  61],
         [ 68,  67,  69],
         ...,
         [ 40,  52,  58],
         [ 73,  85,  91],
         [ 90, 102, 108]],
 
        ...,
 
        [[ 54,  56,  57],
         [ 48,  50,  51],
         [ 45,  47,  48],
         ...,
         [ 54,  49,  50],
         [ 55,  49,  50],
         [ 56,  50,  51]],
 
        [[ 29,  31,  32],
         [ 30,  32,  33],
         [ 31,  33,  34],
         ...,
         [ 55,  50,  51],
         [ 58,  52,  53],
         [ 60,  54,  55]],
 
        [[ 22,  24,  25],
         [ 27,  29,  30],
         [ 33,  35,  36],
         ...,
         [ 57,  52,  53],
         [ 59,  53,  54],
         [ 59,  53,  54]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.15d03eb1f1aea5ae78f46547ddb947b5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6951560974121094, 'inference': 8.849143981933594, 'postprocess': 0.33926963806152344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        ...,
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]],
 
        [[96, 96, 96],
         [96, 96, 96],
         [96, 96, 96],
         ...,
         [96, 96, 96],
         [96, 96, 96],
         [96, 96, 96]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.1ef52a6b450c206cfdcc425311a07859.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3866424560546875, 'inference': 8.646965026855469, 'postprocess': 0.4124641418457031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 64,  63,  65],
         [ 64,  63,  65],
         [ 66,  64,  64],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[ 64,  63,  65],
         [ 64,  63,  65],
         [ 66,  64,  64],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[ 64,  63,  65],
         [ 64,  63,  65],
         [ 66,  64,  64],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        ...,
 
        [[ 64,  64,  64],
         [ 64,  64,  64],
         [ 64,  64,  64],
         ...,
         [ 64,  64,  64],
         [ 64,  64,  64],
         [ 64,  64,  64]],
 
        [[ 64,  64,  64],
         [ 64,  64,  64],
         [ 64,  64,  64],
         ...,
         [ 64,  64,  64],
         [ 64,  64,  64],
         [ 64,  64,  64]],
 
        [[ 64,  64,  64],
         [ 64,  64,  64],
         [ 64,  64,  64],
         ...,
         [ 64,  64,  64],
         [ 64,  64,  64],
         [ 64,  64,  64]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-231-_jpg.rf.2f5901a40332f282bcafe34b90f4f5ec.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.748800277709961, 'inference': 8.466243743896484, 'postprocess': 0.5812644958496094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [77, 77, 77],
         [77, 77, 77],
         [77, 77, 77]],
 
        [[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [77, 77, 77],
         [77, 77, 77],
         [77, 77, 77]],
 
        [[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [77, 77, 77],
         [77, 77, 77],
         [77, 77, 77]],
 
        ...,
 
        [[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [77, 77, 77],
         [77, 77, 77],
         [77, 77, 77]],
 
        [[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [77, 77, 77],
         [77, 77, 77],
         [77, 77, 77]],
 
        [[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [77, 77, 77],
         [77, 77, 77],
         [77, 77, 77]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.1494a9c164c52d1cd9b45dda0e1b5bab.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.537322998046875, 'inference': 8.838653564453125, 'postprocess': 0.3752708435058594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 91, 103, 105],
         [ 95, 107, 109],
         [102, 114, 116],
         ...,
         [101, 107, 130],
         [119, 122, 136],
         [117, 118, 128]],
 
        [[ 61,  73,  75],
         [ 66,  78,  80],
         [ 76,  88,  90],
         ...,
         [101, 107, 130],
         [120, 123, 138],
         [118, 119, 129]],
 
        [[ 30,  42,  44],
         [ 38,  50,  52],
         [ 49,  61,  63],
         ...,
         [101, 107, 130],
         [121, 124, 139],
         [121, 121, 133]],
 
        ...,
 
        [[ 87,  92,  95],
         [ 82,  89,  92],
         [ 82,  88,  93],
         ...,
         [ 71,  80,  84],
         [ 93,  99, 104],
         [ 97, 104, 107]],
 
        [[ 87,  92,  95],
         [ 80,  87,  90],
         [ 83,  89,  94],
         ...,
         [ 63,  71,  78],
         [ 79,  88,  92],
         [ 96, 105, 109]],
 
        [[ 86,  91,  94],
         [ 79,  86,  89],
         [ 86,  92,  97],
         ...,
         [ 57,  67,  74],
         [ 60,  68,  75],
         [ 75,  84,  88]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.848346f3e53f08683c1c17d6f1f7437e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8072128295898438, 'inference': 8.410215377807617, 'postprocess': 0.3211498260498047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[138, 138, 138],
         [138, 138, 138],
         [138, 138, 138],
         ...,
         [138, 138, 138],
         [138, 138, 138],
         [138, 138, 138]],
 
        [[138, 138, 138],
         [138, 138, 138],
         [138, 138, 138],
         ...,
         [138, 138, 138],
         [138, 138, 138],
         [138, 138, 138]],
 
        [[138, 138, 138],
         [138, 138, 138],
         [138, 138, 138],
         ...,
         [138, 138, 138],
         [138, 138, 138],
         [138, 138, 138]],
 
        ...,
 
        [[138, 138, 138],
         [138, 138, 138],
         [138, 138, 138],
         ...,
         [138, 138, 138],
         [138, 138, 138],
         [138, 138, 138]],
 
        [[138, 138, 138],
         [138, 138, 138],
         [138, 138, 138],
         ...,
         [138, 138, 138],
         [138, 138, 138],
         [138, 138, 138]],
 
        [[138, 138, 138],
         [138, 138, 138],
         [138, 138, 138],
         ...,
         [138, 138, 138],
         [138, 138, 138],
         [138, 138, 138]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-232-_jpg.rf.f4098546b7c8b3af5f3463c6f63950dd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6951560974121094, 'inference': 13.781547546386719, 'postprocess': 0.7433891296386719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.59141047e39ac5b57f2f9b1f6a763936.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.661466598510742, 'inference': 14.434814453125, 'postprocess': 0.732421875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  1],
         ...,
         [12, 23, 31],
         [ 0, 10, 18],
         [14, 27, 35]],
 
        [[ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  1],
         ...,
         [ 4, 15, 23],
         [ 0,  4, 12],
         [29, 42, 50]],
 
        [[ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  1],
         ...,
         [ 0, 10, 18],
         [ 0,  2, 10],
         [40, 53, 61]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.64732a7585f4f1dc942fda7dce11b947.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0599365234375, 'inference': 9.053230285644531, 'postprocess': 0.4611015319824219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   2,   0],
         [  3,   8,   6],
         [  9,  13,  14],
         ...,
         [228, 226, 226],
         [227, 225, 225],
         [226, 224, 224]],
 
        [[  4,   9,   7],
         [  3,   8,   7],
         [  4,   8,   9],
         ...,
         [228, 226, 226],
         [227, 225, 225],
         [226, 224, 224]],
 
        [[  8,  14,  13],
         [  3,   9,   8],
         [  5,  10,  11],
         ...,
         [227, 225, 225],
         [226, 224, 224],
         [226, 224, 224]],
 
        ...,
 
        [[102, 121, 129],
         [107, 126, 134],
         [126, 143, 152],
         ...,
         [130, 152, 163],
         [129, 151, 162],
         [129, 151, 162]],
 
        [[ 93, 112, 120],
         [ 95, 114, 122],
         [113, 130, 139],
         ...,
         [138, 160, 171],
         [138, 160, 171],
         [127, 149, 160]],
 
        [[ 96, 115, 123],
         [ 96, 115, 123],
         [108, 125, 134],
         ...,
         [140, 162, 173],
         [141, 163, 174],
         [122, 144, 155]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-233-_jpg.rf.8497a34a9e5ae4ee66830f050bbd69ac.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4767646789550781, 'inference': 8.859634399414062, 'postprocess': 0.48279762268066406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 63,  70,  57],
         [ 62,  69,  56],
         [ 60,  67,  54],
         ...,
         [139, 136, 132],
         [152, 146, 147],
         [160, 153, 156]],
 
        [[ 56,  62,  51],
         [ 56,  63,  50],
         [ 55,  61,  50],
         ...,
         [140, 135, 132],
         [152, 147, 146],
         [159, 153, 154]],
 
        [[ 48,  56,  46],
         [ 48,  56,  45],
         [ 51,  56,  47],
         ...,
         [142, 136, 131],
         [152, 145, 142],
         [159, 151, 151]],
 
        ...,
 
        [[ 82,  78,  73],
         [ 90,  86,  81],
         [ 83,  79,  74],
         ...,
         [105,  96,  93],
         [103,  94,  91],
         [ 98,  89,  86]],
 
        [[ 87,  83,  78],
         [ 95,  91,  86],
         [ 87,  83,  78],
         ...,
         [105,  96,  93],
         [102,  93,  90],
         [ 95,  86,  83]],
 
        [[ 98,  94,  89],
         [103,  99,  94],
         [ 91,  87,  82],
         ...,
         [106,  97,  94],
         [101,  92,  89],
         [ 94,  85,  82]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.6e6834e9f26a64c34edc2093c2133e77.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9378662109375, 'inference': 9.34457778930664, 'postprocess': 0.8234977722167969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [41, 41, 41],
         [41, 41, 41],
         [41, 41, 41]],
 
        ...,
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [93, 87, 88],
         [84, 78, 79],
         [50, 44, 45]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [82, 76, 77],
         [74, 68, 69],
         [45, 39, 40]],
 
        [[41, 41, 41],
         [41, 41, 41],
         [41, 41, 41],
         ...,
         [95, 89, 90],
         [81, 75, 76],
         [43, 37, 38]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.bc29e6e5e745094cb40ab4d9023e2ad3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7864704132080078, 'inference': 8.306026458740234, 'postprocess': 0.3600120544433594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[112, 112, 112],
         [112, 112, 112],
         [112, 112, 112],
         ...,
         [112, 112, 112],
         [112, 112, 112],
         [112, 112, 112]],
 
        [[112, 112, 112],
         [112, 112, 112],
         [112, 112, 112],
         ...,
         [112, 112, 112],
         [112, 112, 112],
         [112, 112, 112]],
 
        [[112, 112, 112],
         [112, 112, 112],
         [112, 112, 112],
         ...,
         [112, 112, 112],
         [112, 112, 112],
         [112, 112, 112]],
 
        ...,
 
        [[112, 112, 112],
         [112, 112, 112],
         [112, 112, 112],
         ...,
         [112, 112, 112],
         [112, 112, 112],
         [112, 112, 112]],
 
        [[112, 112, 112],
         [112, 112, 112],
         [112, 112, 112],
         ...,
         [112, 112, 112],
         [112, 112, 112],
         [112, 112, 112]],
 
        [[112, 112, 112],
         [112, 112, 112],
         [112, 112, 112],
         ...,
         [112, 112, 112],
         [112, 112, 112],
         [112, 112, 112]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-234-_jpg.rf.c7c54a2bd8c106f1e8959e88238d0f3c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6956329345703125, 'inference': 8.875608444213867, 'postprocess': 0.3559589385986328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   3],
         [  0,   0,   1],
         [  0,   0,   1],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   3],
         [  0,   0,   1],
         [  0,   0,   1],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   3],
         [  0,   0,   1],
         [  0,   0,   1],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [113, 116, 120],
         [114, 117, 121],
         [104, 107, 111]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [109, 112, 116],
         [111, 114, 118],
         [108, 111, 115]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [106, 109, 113],
         [110, 113, 117],
         [113, 116, 120]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.149b89f603991e65409d2c817ffa8def.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7917156219482422, 'inference': 10.442256927490234, 'postprocess': 0.6949901580810547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[34, 42, 42],
         [33, 40, 43],
         [23, 31, 38],
         ...,
         [58, 66, 73],
         [50, 58, 65],
         [50, 58, 65]],
 
        [[33, 41, 41],
         [33, 40, 43],
         [22, 30, 37],
         ...,
         [58, 66, 73],
         [48, 56, 63],
         [46, 54, 61]],
 
        [[35, 40, 41],
         [33, 40, 43],
         [22, 30, 37],
         ...,
         [59, 67, 74],
         [46, 54, 61],
         [42, 50, 57]],
 
        ...,
 
        [[53, 52, 54],
         [54, 53, 55],
         [49, 48, 50],
         ...,
         [24, 21, 23],
         [32, 29, 31],
         [41, 38, 40]],
 
        [[53, 52, 54],
         [53, 52, 54],
         [46, 45, 47],
         ...,
         [26, 21, 23],
         [33, 28, 30],
         [36, 31, 33]],
 
        [[49, 48, 50],
         [47, 46, 48],
         [41, 40, 42],
         ...,
         [28, 23, 25],
         [31, 26, 28],
         [28, 23, 25]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.c953bfbb7502053e8a904197dc52e925.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4662742614746094, 'inference': 8.50677490234375, 'postprocess': 0.41866302490234375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        ...,
 
        [[0, 0, 0],
         [3, 3, 3],
         [9, 9, 9],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[0, 0, 0],
         [3, 3, 3],
         [9, 9, 9],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[0, 0, 0],
         [4, 4, 4],
         [9, 9, 9],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-235-_jpg.rf.caa8259752f70e86575c84bdc5a6ac3d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6410350799560547, 'inference': 8.589506149291992, 'postprocess': 0.5841255187988281},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        ...,
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.b4c9d0f7d582f53d9355532af217097e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.317739486694336, 'inference': 8.753776550292969, 'postprocess': 0.3490447998046875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.f81c589abb7f7593acd9a66bd74c5d7f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7347335815429688, 'inference': 12.270450592041016, 'postprocess': 0.43892860412597656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[104, 111, 106],
         [ 93, 100,  95],
         [ 98, 105, 102],
         ...,
         [158, 171, 179],
         [192, 208, 215],
         [184, 200, 207]],
 
        [[102, 109, 104],
         [ 89,  96,  91],
         [ 92,  99,  96],
         ...,
         [162, 175, 183],
         [193, 206, 214],
         [178, 194, 201]],
 
        [[106, 113, 108],
         [ 95, 102,  97],
         [101, 108, 105],
         ...,
         [165, 177, 183],
         [198, 210, 216],
         [189, 203, 209]],
 
        ...,
 
        [[ 46,  44,  43],
         [ 42,  40,  39],
         [ 90,  88,  87],
         ...,
         [131, 132, 130],
         [114, 115, 113],
         [116, 117, 115]],
 
        [[ 37,  35,  34],
         [ 33,  31,  30],
         [ 87,  85,  84],
         ...,
         [123, 124, 122],
         [ 93,  94,  92],
         [ 93,  94,  92]],
 
        [[ 46,  44,  43],
         [ 41,  39,  38],
         [ 94,  92,  91],
         ...,
         [133, 134, 132],
         [107, 108, 106],
         [112, 113, 111]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-237-_jpg.rf.fa5cabd66a044525bb74f3c49acf54fe.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6927719116210938, 'inference': 10.577678680419922, 'postprocess': 0.46253204345703125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5],
         ...,
         [127, 113,  95],
         [127, 113,  95],
         [131, 117,  99]],
 
        [[  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5],
         ...,
         [126, 112,  94],
         [126, 112,  94],
         [129, 115,  97]],
 
        [[  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5],
         ...,
         [125, 111,  93],
         [124, 110,  92],
         [127, 113,  95]],
 
        ...,
 
        [[  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5],
         ...,
         [  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5]],
 
        [[  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5],
         ...,
         [  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5]],
 
        [[  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5],
         ...,
         [  4,   0,   5],
         [  4,   0,   5],
         [  4,   0,   5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.28fccf586765c2246d9b66e5eb8f3584.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7087459564208984, 'inference': 8.411645889282227, 'postprocess': 0.4706382751464844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        ...,
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.43a237ef9bd9dd28d4f798a87853f1fa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8551349639892578, 'inference': 14.675140380859375, 'postprocess': 0.4305839538574219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-238-_jpg.rf.73b9192a4cd0112e00efe9158aff9459.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9061565399169922, 'inference': 12.962579727172852, 'postprocess': 0.5781650543212891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.27ea296703d09cf2fc0438826eb25216.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8093585968017578, 'inference': 8.565664291381836, 'postprocess': 0.39458274841308594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   3,  11],
         [  0,   3,  11],
         [  0,   4,  11],
         ...,
         [ 35,  39,  50],
         [ 35,  39,  50],
         [ 35,  39,  50]],
 
        [[  0,   3,  11],
         [  0,   3,  11],
         [  0,   5,  12],
         ...,
         [ 35,  39,  50],
         [ 35,  39,  50],
         [ 35,  39,  50]],
 
        [[  0,   4,  11],
         [  0,   5,  12],
         [  0,   5,  12],
         ...,
         [ 35,  39,  50],
         [ 35,  40,  49],
         [ 35,  40,  49]],
 
        ...,
 
        [[  9,   4,   6],
         [ 10,   5,   7],
         [ 13,   8,  10],
         ...,
         [105,  98, 101],
         [106,  99, 102],
         [106,  99, 102]],
 
        [[ 15,   8,  11],
         [ 17,  10,  13],
         [ 20,  13,  16],
         ...,
         [104,  97, 100],
         [105,  98, 101],
         [105,  98, 101]],
 
        [[ 21,  14,  17],
         [ 23,  16,  19],
         [ 26,  19,  22],
         ...,
         [104,  97, 100],
         [105,  98, 101],
         [105,  98, 101]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.755180833958d9091b3bb6a24b34f8c9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5065670013427734, 'inference': 8.396148681640625, 'postprocess': 0.3407001495361328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 92, 105, 113],
         [ 94, 107, 115],
         [ 97, 110, 118],
         ...,
         [ 63,  84,  86],
         [ 64,  83,  86],
         [ 64,  83,  86]],
 
        [[ 92, 105, 113],
         [ 94, 107, 115],
         [ 97, 110, 118],
         ...,
         [ 77,  98, 100],
         [ 77,  98, 100],
         [ 77,  98, 100]],
 
        [[ 94, 105, 113],
         [ 96, 107, 115],
         [ 99, 110, 118],
         ...,
         [ 90, 113, 115],
         [ 90, 112, 117],
         [ 90, 112, 117]],
 
        ...,
 
        [[ 56,  56,  56],
         [ 56,  56,  56],
         [ 56,  56,  56],
         ...,
         [ 56,  56,  56],
         [ 56,  56,  56],
         [ 56,  56,  56]],
 
        [[ 56,  56,  56],
         [ 56,  56,  56],
         [ 56,  56,  56],
         ...,
         [ 56,  56,  56],
         [ 56,  56,  56],
         [ 56,  56,  56]],
 
        [[ 56,  56,  56],
         [ 56,  56,  56],
         [ 56,  56,  56],
         ...,
         [ 56,  56,  56],
         [ 56,  56,  56],
         [ 56,  56,  56]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-239-_jpg.rf.8f2076aea9dd8405d1992210d01df6ef.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8210411071777344, 'inference': 9.045839309692383, 'postprocess': 0.3643035888671875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  9,  20,  18],
         [ 37,  48,  46],
         [ 51,  64,  62],
         ...,
         [ 44,  60,  59],
         [ 27,  41,  40],
         [  0,   1,   1]],
 
        [[ 22,  33,  31],
         [ 40,  51,  49],
         [ 44,  57,  55],
         ...,
         [ 39,  57,  56],
         [ 22,  36,  35],
         [  0,  12,  11]],
 
        [[  7,  18,  16],
         [ 13,  24,  22],
         [ 12,  22,  22],
         ...,
         [ 36,  54,  53],
         [ 14,  30,  29],
         [  8,  24,  23]],
 
        ...,
 
        [[126, 153, 179],
         [124, 151, 177],
         [125, 151, 175],
         ...,
         [157, 181, 199],
         [153, 179, 196],
         [143, 169, 186]],
 
        [[105, 132, 158],
         [103, 130, 156],
         [ 94, 121, 147],
         ...,
         [132, 158, 175],
         [126, 152, 169],
         [130, 156, 173]],
 
        [[117, 144, 170],
         [115, 142, 168],
         [ 97, 124, 150],
         ...,
         [134, 160, 177],
         [120, 146, 163],
         [128, 154, 171]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.5c0e8c26b2a5c454bf448e0b6f2ecd97.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7507076263427734, 'inference': 9.020805358886719, 'postprocess': 0.6115436553955078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.6f72a29392e37293dead7ab866cff716.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7547607421875, 'inference': 11.092662811279297, 'postprocess': 0.4897117614746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-24-_jpg.rf.c4aa15eeb12eb5d97a7d89fc47d7cca6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.1398067474365234, 'inference': 9.060859680175781, 'postprocess': 0.5781650543212891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 9,  7,  7],
         [ 9,  7,  7],
         [ 7,  7,  7],
         ...,
         [11,  8,  4],
         [12,  8,  3],
         [12,  8,  3]],
 
        [[ 9,  7,  7],
         [ 9,  7,  7],
         [ 7,  7,  7],
         ...,
         [11,  8,  4],
         [12,  7,  4],
         [12,  8,  3]],
 
        [[ 9,  7,  7],
         [ 9,  7,  7],
         [ 7,  7,  7],
         ...,
         [ 9,  8,  4],
         [11,  8,  4],
         [11,  8,  4]],
 
        ...,
 
        [[ 2, 13, 11],
         [ 4, 15, 13],
         [24, 30, 29],
         ...,
         [ 7,  7,  7],
         [ 5,  7,  7],
         [ 5,  7,  7]],
 
        [[ 0, 10,  8],
         [ 6, 17, 15],
         [32, 38, 37],
         ...,
         [ 7,  7,  7],
         [ 5,  7,  7],
         [ 5,  7,  7]],
 
        [[ 0,  5,  3],
         [ 8, 19, 17],
         [41, 47, 46],
         ...,
         [ 7,  7,  7],
         [ 5,  7,  7],
         [ 5,  7,  7]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.6cf12918112f73e428cb65a891665604.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4224052429199219, 'inference': 9.09733772277832, 'postprocess': 0.370025634765625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[182, 191, 188],
         [199, 206, 201],
         [181, 187, 182],
         ...,
         [255, 254, 255],
         [253, 252, 254],
         [252, 251, 253]],
 
        [[176, 185, 182],
         [193, 200, 195],
         [183, 190, 183],
         ...,
         [255, 254, 255],
         [253, 252, 254],
         [252, 251, 253]],
 
        [[186, 193, 188],
         [190, 197, 192],
         [174, 181, 174],
         ...,
         [255, 254, 255],
         [253, 252, 254],
         [253, 252, 254]],
 
        ...,
 
        [[ 88,  93,  91],
         [ 88,  93,  91],
         [ 93,  98,  96],
         ...,
         [ 36,  37,  33],
         [ 46,  45,  41],
         [ 50,  49,  45]],
 
        [[ 79,  84,  82],
         [ 81,  86,  84],
         [ 87,  92,  90],
         ...,
         [ 57,  55,  54],
         [ 61,  59,  58],
         [ 61,  59,  58]],
 
        [[ 85,  90,  88],
         [ 89,  94,  92],
         [ 97, 102, 100],
         ...,
         [ 57,  55,  55],
         [ 68,  66,  65],
         [ 70,  68,  67]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.8dee3d4ab5ccd2161b6e520c20a0f812.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8765926361083984, 'inference': 13.55123519897461, 'postprocess': 0.7574558258056641},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-240-_jpg.rf.8f0271d2f7004b60ecb8bceed3c799c6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6672611236572266, 'inference': 9.102106094360352, 'postprocess': 0.3681182861328125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        ...,
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.3432cc48d4f6e7d8002d6eb4642495ce.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3778209686279297, 'inference': 9.306907653808594, 'postprocess': 0.44465065002441406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 5,  0,  0],
         [ 4,  0,  1],
         [ 3,  0,  4],
         ...,
         [ 0,  0,  3],
         [ 2, 10, 10],
         [ 0,  2,  2]],
 
        [[ 6,  0,  1],
         [ 4,  0,  0],
         [ 4,  0,  5],
         ...,
         [ 0,  0,  3],
         [ 0,  6,  6],
         [ 0,  1,  1]],
 
        [[ 7,  2,  1],
         [ 4,  0,  0],
         [ 4,  0,  5],
         ...,
         [ 0,  7, 10],
         [ 4, 12, 12],
         [ 0,  1,  1]],
 
        ...,
 
        [[ 0,  0,  3],
         [ 0,  1,  2],
         [ 1,  3,  4],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 1,  0,  2],
         [ 2,  2,  2],
         [ 3,  3,  3],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 2,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.8288a409c841a344ed2174080fddc6a5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8084049224853516, 'inference': 10.14566421508789, 'postprocess': 0.3917217254638672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[105, 138, 147],
         [112, 144, 150],
         [ 97, 122, 124],
         ...,
         [158, 175, 196],
         [132, 149, 170],
         [137, 154, 175]],
 
        [[ 97, 130, 139],
         [111, 143, 149],
         [114, 139, 143],
         ...,
         [144, 161, 182],
         [121, 138, 159],
         [144, 161, 182]],
 
        [[ 88, 120, 131],
         [114, 145, 154],
         [142, 166, 172],
         ...,
         [126, 145, 166],
         [100, 117, 138],
         [131, 148, 169]],
 
        ...,
 
        [[158, 146, 142],
         [133, 124, 121],
         [123, 120, 122],
         ...,
         [140, 152, 176],
         [148, 162, 185],
         [169, 183, 206]],
 
        [[203, 193, 186],
         [160, 153, 150],
         [128, 127, 129],
         ...,
         [133, 145, 169],
         [133, 147, 170],
         [157, 171, 194]],
 
        [[192, 182, 175],
         [142, 135, 132],
         [100,  99, 101],
         ...,
         [148, 160, 184],
         [112, 126, 149],
         [102, 116, 139]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-241-_jpg.rf.c898c9588e06414254eb3a8101ade893.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8396377563476562, 'inference': 9.548425674438477, 'postprocess': 0.40841102600097656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        ...,
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.0a72277f1c31da47eb26ecbb3b7e6296.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6748905181884766, 'inference': 8.980512619018555, 'postprocess': 0.41937828063964844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.42f875819ed5ac0facfa51b46a123fc2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7230510711669922, 'inference': 14.380455017089844, 'postprocess': 0.7269382476806641},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 24,  27,  32],
         [ 24,  27,  32],
         [ 24,  28,  33],
         ...,
         [ 56,  71,  80],
         [ 55,  70,  79],
         [ 55,  70,  79]],
 
        [[ 27,  30,  35],
         [ 26,  29,  34],
         [ 27,  31,  36],
         ...,
         [ 52,  67,  76],
         [ 52,  67,  76],
         [ 52,  67,  76]],
 
        [[ 30,  33,  37],
         [ 30,  33,  37],
         [ 32,  37,  40],
         ...,
         [ 51,  63,  73],
         [ 51,  63,  73],
         [ 50,  62,  72]],
 
        ...,
 
        [[128, 125, 134],
         [134, 131, 140],
         [120, 117, 126],
         ...,
         [127, 125, 124],
         [129, 127, 126],
         [157, 155, 154]],
 
        [[112, 109, 118],
         [113, 110, 119],
         [113, 110, 119],
         ...,
         [143, 142, 138],
         [139, 138, 134],
         [159, 158, 154]],
 
        [[126, 123, 132],
         [109, 106, 115],
         [114, 111, 120],
         ...,
         [174, 173, 169],
         [155, 154, 150],
         [154, 153, 149]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-242-_jpg.rf.61dffd0851eee83ef24f448d88ffeebe.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.017974853515625, 'inference': 11.298418045043945, 'postprocess': 1.1224746704101562},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[200, 162, 128],
         [205, 167, 133],
         [207, 169, 137],
         ...,
         [ 73,  76,  81],
         [ 60,  63,  67],
         [ 59,  62,  66]],
 
        [[199, 161, 127],
         [203, 165, 131],
         [204, 166, 134],
         ...,
         [ 77,  80,  85],
         [ 65,  68,  72],
         [ 64,  67,  71]],
 
        [[198, 159, 127],
         [201, 162, 130],
         [201, 163, 133],
         ...,
         [ 89,  89,  95],
         [ 81,  82,  86],
         [ 80,  81,  85]],
 
        ...,
 
        [[ 81,  88, 105],
         [ 93, 100, 117],
         [103, 110, 127],
         ...,
         [ 39,  36,  38],
         [ 38,  35,  37],
         [ 34,  31,  33]],
 
        [[ 76,  83, 100],
         [ 87,  94, 111],
         [ 98, 105, 122],
         ...,
         [ 33,  30,  32],
         [ 31,  28,  30],
         [ 29,  26,  28]],
 
        [[ 71,  78,  95],
         [ 82,  89, 106],
         [ 93, 100, 117],
         ...,
         [ 30,  27,  29],
         [ 28,  25,  27],
         [ 26,  23,  25]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.0df6511df9c5cff60f86c536ab1635a1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.88446044921875, 'inference': 9.824275970458984, 'postprocess': 0.44465065002441406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[100, 100, 100],
         [100, 100, 100],
         [100, 100, 100],
         ...,
         [100, 100, 100],
         [100, 100, 100],
         [100, 100, 100]],
 
        [[100, 100, 100],
         [100, 100, 100],
         [100, 100, 100],
         ...,
         [100, 100, 100],
         [100, 100, 100],
         [100, 100, 100]],
 
        [[100, 100, 100],
         [100, 100, 100],
         [100, 100, 100],
         ...,
         [100, 100, 100],
         [100, 100, 100],
         [100, 100, 100]],
 
        ...,
 
        [[100, 100, 100],
         [100, 100, 100],
         [100, 100, 100],
         ...,
         [100, 100, 100],
         [100, 100, 100],
         [100, 100, 100]],
 
        [[100, 100, 100],
         [100, 100, 100],
         [100, 100, 100],
         ...,
         [100, 100, 100],
         [100, 100, 100],
         [100, 100, 100]],
 
        [[100, 100, 100],
         [100, 100, 100],
         [100, 100, 100],
         ...,
         [100, 100, 100],
         [100, 100, 100],
         [100, 100, 100]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.d07142e52129da403acd41a7a03fabae.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9767284393310547, 'inference': 11.802434921264648, 'postprocess': 0.44608116149902344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-243-_jpg.rf.d864bfac7ff1440f8c98557209aa3c0f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7743110656738281, 'inference': 9.623050689697266, 'postprocess': 0.3731250762939453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[115, 125, 135],
         [109, 119, 129],
         [ 93, 103, 113],
         ...,
         [ 62,  71,  81],
         [ 64,  73,  83],
         [ 68,  77,  87]],
 
        [[109, 119, 129],
         [ 95, 105, 115],
         [ 83,  93, 103],
         ...,
         [ 61,  70,  80],
         [ 66,  75,  85],
         [ 74,  83,  93]],
 
        [[ 92, 104, 114],
         [ 79,  91, 101],
         [ 77,  89,  99],
         ...,
         [ 60,  69,  79],
         [ 70,  79,  89],
         [ 84,  93, 103]],
 
        ...,
 
        [[171, 195, 247],
         [172, 196, 248],
         [174, 196, 248],
         ...,
         [242, 247, 250],
         [248, 253, 255],
         [250, 255, 255]],
 
        [[170, 194, 246],
         [171, 195, 247],
         [174, 196, 248],
         ...,
         [235, 240, 243],
         [244, 249, 252],
         [245, 250, 253]],
 
        [[168, 192, 244],
         [170, 194, 246],
         [173, 195, 247],
         ...,
         [238, 243, 246],
         [250, 255, 255],
         [245, 250, 253]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.1cc262720c9af6dae71db8520773160b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5382766723632812, 'inference': 8.889198303222656, 'postprocess': 0.3597736358642578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.7ebc863c89590ff2a83f607dcbc68e34.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4667510986328125, 'inference': 9.147167205810547, 'postprocess': 0.36907196044921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [171, 188, 191],
         [172, 189, 192],
         [172, 189, 192]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [171, 188, 191],
         [173, 190, 193],
         [174, 191, 194]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [172, 189, 192],
         [174, 191, 194],
         [175, 192, 195]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-244-_jpg.rf.9beb79771a7b6709183e6cca511ff830.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6214847564697266, 'inference': 9.19032096862793, 'postprocess': 0.4811286926269531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.17df77133740bc613a4696554928cd5c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3306140899658203, 'inference': 9.087562561035156, 'postprocess': 0.23508071899414062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 12,  32,  20],
         [ 34,  56,  44],
         [116, 140, 128],
         ...,
         [ 57,  91,  84],
         [ 15,  52,  44],
         [ 14,  51,  43]],
 
        [[ 60,  80,  68],
         [  0,  22,  10],
         [136, 160, 148],
         ...,
         [ 42,  77,  67],
         [ 78, 112, 105],
         [ 15,  52,  42]],
 
        [[ 86, 106,  94],
         [ 29,  51,  39],
         [ 98, 124, 111],
         ...,
         [ 64, 100,  88],
         [ 39,  74,  64],
         [ 24,  60,  48]],
 
        ...,
 
        [[ 93,  96, 100],
         [ 64,  67,  71],
         [117, 118, 122],
         ...,
         [140, 141, 151],
         [139, 140, 150],
         [228, 229, 239]],
 
        [[137, 140, 144],
         [130, 133, 137],
         [ 49,  50,  54],
         ...,
         [116, 117, 127],
         [ 78,  79,  89],
         [ 87,  88,  98]],
 
        [[119, 122, 126],
         [121, 124, 128],
         [152, 153, 157],
         ...,
         [133, 134, 144],
         [ 94,  95, 105],
         [ 78,  79,  89]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.9e660e4d87ccc3b8a3bb1d2bf2745aa8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7549991607666016, 'inference': 9.403228759765625, 'postprocess': 0.484466552734375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76],
         ...,
         [108, 144, 128],
         [109, 146, 130],
         [114, 151, 135]],
 
        [[ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76],
         ...,
         [ 95, 131, 115],
         [ 93, 129, 113],
         [ 90, 127, 111]],
 
        [[ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76],
         ...,
         [ 87, 120, 105],
         [ 89, 122, 107],
         [ 90, 126, 110]],
 
        ...,
 
        [[ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76],
         ...,
         [ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76]],
 
        [[ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76],
         ...,
         [ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76]],
 
        [[ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76],
         ...,
         [ 76,  76,  76],
         [ 76,  76,  76],
         [ 76,  76,  76]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-245-_jpg.rf.f64415f2a4f04934c63eb9e6ddc58b03.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.355886459350586, 'inference': 9.582757949829102, 'postprocess': 0.6954669952392578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        ...,
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.554ed8a1140e2e47539b5825358f3491.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7926692962646484, 'inference': 13.585329055786133, 'postprocess': 0.3445148468017578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.7b2fd4f45f1134c636d1a6fe51744d46.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8241405487060547, 'inference': 9.002208709716797, 'postprocess': 0.4813671112060547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[248, 255, 250],
         [137, 144, 139],
         [ 34,  42,  41],
         ...,
         [187, 175, 165],
         [241, 232, 222],
         [255, 255, 246]],
 
        [[236, 243, 238],
         [145, 152, 149],
         [ 53,  61,  60],
         ...,
         [180, 168, 158],
         [235, 226, 216],
         [255, 253, 242]],
 
        [[234, 241, 238],
         [165, 172, 169],
         [ 88,  94,  93],
         ...,
         [177, 165, 155],
         [232, 223, 213],
         [255, 250, 239]],
 
        ...,
 
        [[244, 250, 249],
         [188, 194, 193],
         [126, 134, 134],
         ...,
         [156, 162, 167],
         [198, 204, 209],
         [244, 250, 255]],
 
        [[247, 253, 252],
         [192, 198, 197],
         [131, 136, 137],
         ...,
         [154, 160, 165],
         [197, 203, 208],
         [245, 251, 255]],
 
        [[246, 252, 251],
         [194, 200, 199],
         [135, 140, 141],
         ...,
         [152, 158, 163],
         [196, 202, 207],
         [245, 251, 255]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-246-_jpg.rf.93663c16c298ed591b91eadfc6e144ae.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.42669677734375, 'inference': 9.133100509643555, 'postprocess': 0.3635883331298828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  1],
         [ 0,  0,  1],
         [ 0,  0,  1],
         ...,
         [ 0,  1,  0],
         [ 0,  2,  1],
         [ 0,  1,  0]],
 
        [[ 0,  0,  1],
         [ 0,  0,  1],
         [ 0,  0,  1],
         ...,
         [ 0,  1,  0],
         [ 1,  6,  5],
         [ 0,  4,  3]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 1,  1,  1],
         ...,
         [ 0,  1,  1],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[69, 69, 69],
         [60, 60, 60],
         [48, 48, 48],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[90, 90, 90],
         [81, 81, 81],
         [65, 65, 65],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[44, 44, 44],
         [41, 41, 41],
         [30, 30, 30],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.0f4643d64aafaa72e5e291cb8bdfae57.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7201900482177734, 'inference': 9.15980339050293, 'postprocess': 0.6330013275146484},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[247, 247, 247],
         [252, 252, 252],
         [249, 249, 249],
         ...,
         [ 23,  23,  23],
         [ 12,  12,  12],
         [  3,   3,   3]],
 
        [[252, 252, 252],
         [255, 255, 255],
         [252, 252, 252],
         ...,
         [ 19,  19,  19],
         [ 13,  13,  13],
         [  9,   9,   9]],
 
        [[252, 252, 252],
         [254, 254, 254],
         [252, 252, 252],
         ...,
         [ 12,  12,  12],
         [ 11,  11,  11],
         [ 10,  10,  10]],
 
        ...,
 
        [[ 97,  95,  95],
         [ 89,  87,  87],
         [ 86,  84,  84],
         ...,
         [ 78,  78,  78],
         [ 71,  71,  71],
         [ 81,  81,  81]],
 
        [[100,  98,  98],
         [104, 102, 102],
         [112, 110, 110],
         ...,
         [ 95,  95,  95],
         [ 88,  88,  88],
         [ 96,  96,  96]],
 
        [[101,  99,  99],
         [118, 116, 116],
         [137, 135, 135],
         ...,
         [112, 112, 112],
         [120, 120, 120],
         [133, 133, 133]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.5b9be4976067ff481a06a5d7f1916133.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4166831970214844, 'inference': 9.062051773071289, 'postprocess': 0.36454200744628906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-247-_jpg.rf.cbf21b0811a22af9d7b2ebaffbd1d938.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6486644744873047, 'inference': 12.438058853149414, 'postprocess': 0.6797313690185547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[61, 61, 61],
         [61, 61, 61],
         [61, 61, 61],
         ...,
         [61, 61, 61],
         [61, 61, 61],
         [61, 61, 61]],
 
        [[61, 61, 61],
         [61, 61, 61],
         [61, 61, 61],
         ...,
         [61, 61, 61],
         [61, 61, 61],
         [61, 61, 61]],
 
        [[61, 61, 61],
         [61, 61, 61],
         [61, 61, 61],
         ...,
         [61, 61, 61],
         [61, 61, 61],
         [61, 61, 61]],
 
        ...,
 
        [[61, 61, 61],
         [61, 61, 61],
         [61, 61, 61],
         ...,
         [61, 61, 61],
         [61, 61, 61],
         [61, 61, 61]],
 
        [[61, 61, 61],
         [61, 61, 61],
         [61, 61, 61],
         ...,
         [61, 61, 61],
         [61, 61, 61],
         [61, 61, 61]],
 
        [[61, 61, 61],
         [61, 61, 61],
         [61, 61, 61],
         ...,
         [61, 61, 61],
         [61, 61, 61],
         [61, 61, 61]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.a3cbf0b1296da7cd3ea5d46525c3b5ad.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7216205596923828, 'inference': 9.000301361083984, 'postprocess': 0.3457069396972656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        ...,
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]],
 
        [[45, 45, 45],
         [45, 45, 45],
         [45, 45, 45],
         ...,
         [45, 45, 45],
         [45, 45, 45],
         [45, 45, 45]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.a889a66f2a2a27646c6d2102e5b2fb17.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3720989227294922, 'inference': 9.034395217895508, 'postprocess': 0.3509521484375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 23,  57,  50],
         [ 22,  56,  49],
         [ 22,  56,  49],
         ...,
         [213, 188, 168],
         [213, 188, 168],
         [213, 188, 168]],
 
        [[ 33,  66,  59],
         [ 30,  63,  56],
         [ 28,  61,  54],
         ...,
         [213, 188, 168],
         [213, 188, 168],
         [213, 188, 168]],
 
        [[ 38,  69,  62],
         [ 36,  67,  60],
         [ 33,  64,  57],
         ...,
         [212, 187, 167],
         [212, 187, 167],
         [212, 187, 167]],
 
        ...,
 
        [[167, 170, 174],
         [165, 168, 172],
         [184, 186, 187],
         ...,
         [138, 142, 143],
         [137, 141, 142],
         [142, 146, 147]],
 
        [[168, 171, 175],
         [165, 168, 172],
         [182, 184, 185],
         ...,
         [138, 142, 143],
         [137, 141, 142],
         [143, 147, 148]],
 
        [[170, 173, 177],
         [165, 168, 172],
         [178, 180, 181],
         ...,
         [137, 141, 142],
         [136, 140, 141],
         [143, 147, 148]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-248-_jpg.rf.b57094138ac0e7270328a9956b2f616e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8274784088134766, 'inference': 9.083032608032227, 'postprocess': 0.3619194030761719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.2909e1821a38907edf8d4f9d87cfa7fa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4557838439941406, 'inference': 8.957386016845703, 'postprocess': 0.3619194030761719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 66, 130,  65],
         [ 66, 130,  65],
         [ 65, 129,  64],
         ...,
         [179, 223, 186],
         [179, 223, 186],
         [179, 223, 186]],
 
        [[ 68, 129,  71],
         [ 69, 130,  72],
         [ 69, 130,  72],
         ...,
         [179, 223, 186],
         [180, 223, 186],
         [179, 223, 186]],
 
        [[ 64, 119,  72],
         [ 64, 119,  72],
         [ 65, 120,  73],
         ...,
         [180, 222, 187],
         [182, 222, 187],
         [180, 222, 187]],
 
        ...,
 
        [[150, 148, 148],
         [152, 150, 150],
         [152, 150, 150],
         ...,
         [166, 165, 167],
         [161, 160, 162],
         [162, 161, 163]],
 
        [[150, 148, 148],
         [152, 150, 150],
         [151, 149, 149],
         ...,
         [163, 162, 164],
         [158, 157, 159],
         [160, 159, 161]],
 
        [[150, 148, 148],
         [152, 150, 150],
         [151, 149, 149],
         ...,
         [165, 164, 166],
         [161, 160, 162],
         [163, 162, 164]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.6184619642f841a8598f0fee9f9cb770.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7323493957519531, 'inference': 14.46223258972168, 'postprocess': 0.7605552673339844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        ...,
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-249-_jpg.rf.6e835a0b390d9b7815c33f5834b17a42.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.277851104736328, 'inference': 13.66567611694336, 'postprocess': 0.6995201110839844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.0c7a3fd9a3840f28576edfe095f5b2c8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.493215560913086, 'inference': 10.329484939575195, 'postprocess': 0.8723735809326172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 72,  64,  65],
         [ 80,  72,  73],
         [ 93,  85,  85],
         ...,
         [ 41,  34,  31],
         [ 57,  50,  47],
         [ 61,  56,  53]],
 
        [[103,  96,  93],
         [ 92,  85,  82],
         [ 95,  88,  85],
         ...,
         [ 68,  61,  58],
         [ 77,  70,  67],
         [ 64,  59,  56]],
 
        [[114, 112, 102],
         [102, 100,  90],
         [ 96,  94,  84],
         ...,
         [101,  95,  90],
         [123, 117, 112],
         [118, 114, 109]],
 
        ...,
 
        [[ 37,  54,  50],
         [ 82,  97,  93],
         [107, 118, 115],
         ...,
         [  2,   0,   0],
         [  4,   0,   0],
         [  5,   3,   2]],
 
        [[131, 151, 146],
         [117, 134, 130],
         [ 86, 100,  96],
         ...,
         [  0,   1,   0],
         [  2,   0,   0],
         [  2,   3,   1]],
 
        [[162, 182, 177],
         [ 62,  79,  75],
         [ 25,  39,  35],
         ...,
         [  0,   1,   0],
         [  0,   1,   0],
         [  3,   4,   2]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.2d988998b2a995bdee0f0282803e4801.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.750946044921875, 'inference': 9.071826934814453, 'postprocess': 0.5333423614501953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-25-_jpg.rf.deadb4c9f8357cd2f7d51f91cb1da866.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.377105712890625, 'inference': 9.680986404418945, 'postprocess': 0.5192756652832031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  9,  42,  27],
         [ 39,  72,  57],
         [ 17,  47,  34],
         ...,
         [ 35,  24,  26],
         [ 51,  41,  41],
         [ 45,  35,  35]],
 
        [[ 39,  72,  57],
         [ 50,  83,  68],
         [ 36,  66,  53],
         ...,
         [ 35,  24,  26],
         [ 50,  40,  40],
         [ 43,  33,  33]],
 
        [[ 53,  86,  71],
         [ 36,  69,  54],
         [ 33,  63,  50],
         ...,
         [ 38,  27,  29],
         [ 50,  42,  42],
         [ 43,  35,  35]],
 
        ...,
 
        [[ 67,  72,  70],
         [221, 226, 224],
         [ 56,  61,  59],
         ...,
         [143, 135, 146],
         [104,  96, 107],
         [124, 116, 127]],
 
        [[200, 206, 201],
         [145, 151, 146],
         [ 67,  73,  68],
         ...,
         [161, 153, 164],
         [135, 127, 138],
         [142, 134, 145]],
 
        [[222, 228, 223],
         [103, 109, 104],
         [172, 178, 173],
         ...,
         [171, 163, 174],
         [149, 141, 152],
         [136, 128, 139]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.90193421f8c21ded95e0cbf404f513dd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7931461334228516, 'inference': 9.243965148925781, 'postprocess': 0.5717277526855469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  1,   5,   0],
         [  0,   2,   0],
         [  0,   3,   1],
         ...,
         [  6,   3,   0],
         [  8,   4,   0],
         [  8,   2,   0]],
 
        [[  1,   5,   0],
         [  0,   2,   0],
         [  1,   4,   2],
         ...,
         [  6,   3,   0],
         [  7,   3,   0],
         [  7,   1,   0]],
 
        [[  0,   2,   0],
         [  0,   2,   0],
         [  0,   1,   0],
         ...,
         [  5,   2,   0],
         [  7,   3,   0],
         [  7,   1,   0]],
 
        ...,
 
        [[213, 215, 225],
         [233, 235, 245],
         [196, 199, 207],
         ...,
         [  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1]],
 
        [[246, 248, 255],
         [199, 201, 211],
         [181, 184, 192],
         ...,
         [  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1]],
 
        [[230, 232, 242],
         [166, 168, 178],
         [221, 224, 232],
         ...,
         [  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.a3ea467a7cc80896f04d44bea680785d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4462471008300781, 'inference': 9.123086929321289, 'postprocess': 0.44345855712890625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10,  2,  2],
         [ 7,  0,  0],
         [ 5,  0,  0],
         ...,
         [ 2,  2,  0],
         [ 5,  1,  0],
         [ 8,  4,  0]],
 
        [[ 8,  3,  2],
         [ 9,  4,  3],
         [12,  7,  6],
         ...,
         [ 3,  3,  0],
         [ 7,  4,  0],
         [ 9,  5,  0]],
 
        [[ 4,  0,  0],
         [ 3,  1,  0],
         [ 2,  0,  0],
         ...,
         [ 0,  1,  0],
         [ 8,  5,  1],
         [ 5,  2,  0]],
 
        ...,
 
        [[ 2,  2,  2],
         [ 0,  0,  0],
         [ 8,  8,  8],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 3,  3,  3],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 5,  5,  5],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-250-_jpg.rf.fa08a66eed53518165efed59a5ab8eb4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9078254699707031, 'inference': 9.259939193725586, 'postprocess': 0.3495216369628906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.2fdb4a020ffa343ae74099d9d2876c41.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8312931060791016, 'inference': 9.289741516113281, 'postprocess': 0.43129920959472656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  5, 12],
         [ 0,  7, 11],
         [ 2,  7, 10],
         ...,
         [83, 83, 71],
         [83, 83, 71],
         [82, 82, 70]],
 
        [[ 0,  4, 11],
         [ 0,  7, 11],
         [ 2,  7, 10],
         ...,
         [89, 89, 77],
         [87, 87, 75],
         [84, 84, 72]],
 
        [[ 0,  4, 11],
         [ 0,  6, 10],
         [ 2,  7, 10],
         ...,
         [96, 96, 84],
         [90, 90, 78],
         [84, 84, 72]],
 
        ...,
 
        [[77, 82, 83],
         [80, 85, 86],
         [76, 81, 82],
         ...,
         [76, 68, 61],
         [78, 70, 63],
         [82, 74, 67]],
 
        [[69, 74, 75],
         [72, 77, 78],
         [68, 73, 74],
         ...,
         [73, 65, 58],
         [70, 62, 55],
         [69, 61, 54]],
 
        [[63, 68, 69],
         [65, 70, 71],
         [61, 66, 67],
         ...,
         [74, 66, 59],
         [69, 61, 54],
         [66, 58, 51]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.38a2bdb803b4ab772ebd6e40119129f8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3816356658935547, 'inference': 9.54294204711914, 'postprocess': 0.40268898010253906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-251-_jpg.rf.9841cb1e9b954b905fb2c6573c987199.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6086101531982422, 'inference': 9.799718856811523, 'postprocess': 0.7939338684082031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[255, 229, 219],
         [252, 225, 215],
         [253, 224, 215],
         ...,
         [166, 156, 146],
         [156, 146, 136],
         [ 83,  73,  63]],
 
        [[255, 229, 219],
         [252, 225, 215],
         [253, 224, 215],
         ...,
         [ 65,  55,  45],
         [ 12,   2,   0],
         [ 21,  11,   1]],
 
        [[255, 229, 222],
         [252, 226, 219],
         [254, 226, 219],
         ...,
         [ 34,  24,  14],
         [ 34,  24,  14],
         [ 39,  29,  19]],
 
        ...,
 
        [[ 78, 143,  98],
         [ 83, 155, 108],
         [ 76, 155, 106],
         ...,
         [209, 176, 183],
         [221, 187, 194],
         [217, 180, 188]],
 
        [[167, 231, 185],
         [ 85, 155, 108],
         [ 23,  99,  51],
         ...,
         [225, 192, 199],
         [231, 197, 204],
         [223, 186, 194]],
 
        [[160, 224, 178],
         [ 49, 117,  70],
         [ 41, 118,  67],
         ...,
         [217, 184, 191],
         [226, 192, 199],
         [225, 188, 196]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.1d994545861b8acd262681fa0d99058b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5187263488769531, 'inference': 9.949207305908203, 'postprocess': 0.7877349853515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        ...,
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]],
 
        [[5, 5, 5],
         [5, 5, 5],
         [5, 5, 5],
         ...,
         [5, 5, 5],
         [5, 5, 5],
         [5, 5, 5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.60c38b7dd52f66a6bf7fd05386915aef.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9614696502685547, 'inference': 16.82138442993164, 'postprocess': 0.7660388946533203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-252-_jpg.rf.9cb2afb0020b7d0e4220ed2f05fc3014.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9860267639160156, 'inference': 9.663820266723633, 'postprocess': 0.6682872772216797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[13, 13, 13],
         [ 7,  7,  7],
         [ 4,  4,  4],
         ...,
         [ 6,  8,  8],
         [ 7,  9,  9],
         [ 8, 10, 10]],
 
        [[12, 12, 12],
         [ 7,  7,  7],
         [ 5,  5,  5],
         ...,
         [ 5,  7,  7],
         [ 7,  9,  9],
         [ 8, 10, 10]],
 
        [[12, 12, 12],
         [ 8,  8,  8],
         [ 7,  7,  7],
         ...,
         [ 4,  6,  6],
         [ 6,  8,  8],
         [ 7,  9,  9]],
 
        ...,
 
        [[28, 32, 33],
         [28, 32, 33],
         [24, 28, 29],
         ...,
         [63, 67, 68],
         [65, 69, 70],
         [65, 69, 70]],
 
        [[32, 36, 37],
         [30, 34, 35],
         [25, 29, 30],
         ...,
         [62, 66, 67],
         [62, 66, 67],
         [59, 63, 64]],
 
        [[33, 37, 38],
         [31, 35, 36],
         [26, 30, 31],
         ...,
         [62, 66, 67],
         [60, 64, 65],
         [56, 60, 61]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.1ddbaa9733534658408a1a14372ef0b9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.661539077758789, 'inference': 15.003204345703125, 'postprocess': 0.6887912750244141},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.2d65914b2455aaeff16e8ef4321a9ae2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6832351684570312, 'inference': 9.444713592529297, 'postprocess': 0.5981922149658203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-253-_jpg.rf.fe9146427e9147a64aa2edd89579fa80.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5897750854492188, 'inference': 9.259939193725586, 'postprocess': 0.43773651123046875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.58d537e75af0a9fe40651c5c9e5c6f10.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8167495727539062, 'inference': 11.232137680053711, 'postprocess': 0.6995201110839844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 13, 11],
         [10, 13, 11],
         [10, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[10, 13, 11],
         [10, 13, 11],
         [10, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 13, 11],
         [12, 13, 11],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.5b8acd3a5f571d5d7e245e1f950b92cc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7452239990234375, 'inference': 8.965253829956055, 'postprocess': 0.5311965942382812},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  9,  42,  45],
         [ 14,  45,  48],
         [ 12,  42,  43],
         ...,
         [161, 145, 122],
         [159, 143, 120],
         [159, 143, 120]],
 
        [[  8,  39,  42],
         [ 12,  43,  44],
         [ 16,  44,  45],
         ...,
         [161, 145, 122],
         [160, 144, 121],
         [159, 143, 120]],
 
        [[ 10,  40,  41],
         [ 13,  44,  43],
         [ 19,  45,  45],
         ...,
         [159, 146, 120],
         [158, 145, 119],
         [158, 145, 119]],
 
        ...,
 
        [[ 35,  37,  37],
         [ 34,  36,  36],
         [ 33,  35,  35],
         ...,
         [ 29,  29,  29],
         [ 28,  28,  28],
         [ 28,  28,  28]],
 
        [[ 34,  36,  36],
         [ 33,  35,  35],
         [ 31,  33,  33],
         ...,
         [ 30,  30,  30],
         [ 29,  29,  29],
         [ 28,  28,  28]],
 
        [[ 33,  35,  35],
         [ 32,  34,  34],
         [ 30,  32,  32],
         ...,
         [ 30,  30,  30],
         [ 29,  29,  29],
         [ 28,  28,  28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-255-_jpg.rf.93cf2350f3e2eb8b0e28c90904582e06.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4994144439697266, 'inference': 9.346961975097656, 'postprocess': 0.8168220520019531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.7019bcfb7ed85d62a0068bb4d90894d6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7192363739013672, 'inference': 9.458780288696289, 'postprocess': 0.5459785461425781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 23,  32,  29],
         [ 24,  33,  30],
         [ 27,  32,  33],
         ...,
         [ 34,  34,  34],
         [ 34,  34,  34],
         [ 34,  34,  34]],
 
        [[ 35,  42,  39],
         [ 35,  41,  40],
         [ 34,  39,  38],
         ...,
         [ 34,  34,  34],
         [ 34,  34,  34],
         [ 34,  34,  34]],
 
        [[ 27,  29,  29],
         [ 28,  30,  30],
         [ 28,  30,  30],
         ...,
         [ 34,  34,  34],
         [ 34,  34,  34],
         [ 34,  34,  34]],
 
        ...,
 
        [[ 34,  34,  34],
         [ 34,  34,  34],
         [ 34,  34,  34],
         ...,
         [128, 130, 131],
         [121, 125, 126],
         [115, 119, 120]],
 
        [[ 34,  34,  34],
         [ 34,  34,  34],
         [ 34,  34,  34],
         ...,
         [104, 106, 107],
         [110, 114, 115],
         [116, 120, 121]],
 
        [[ 34,  34,  34],
         [ 34,  34,  34],
         [ 34,  34,  34],
         ...,
         [ 89,  91,  92],
         [106, 110, 111],
         [122, 126, 127]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.aa2fce633443ee1d8c81896a8ea32dae.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5630722045898438, 'inference': 13.768672943115234, 'postprocess': 0.6773471832275391},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 31,  32,  30],
         [ 29,  30,  26],
         [ 29,  28,  24],
         ...,
         [ 80,  71,  58],
         [ 92,  83,  70],
         [102,  93,  80]],
 
        [[ 31,  32,  30],
         [ 29,  30,  26],
         [ 29,  28,  24],
         ...,
         [102,  93,  80],
         [118, 109,  96],
         [131, 122, 109]],
 
        [[ 32,  33,  31],
         [ 30,  31,  27],
         [ 30,  29,  25],
         ...,
         [141, 129, 117],
         [161, 149, 137],
         [174, 162, 150]],
 
        ...,
 
        [[102,  96,  97],
         [100,  94,  95],
         [102,  96,  97],
         ...,
         [107, 103, 108],
         [107, 103, 108],
         [108, 104, 109]],
 
        [[102,  94,  95],
         [ 99,  91,  92],
         [ 99,  93,  94],
         ...,
         [120, 114, 119],
         [118, 112, 117],
         [116, 110, 115]],
 
        [[ 99,  91,  92],
         [ 94,  86,  87],
         [ 92,  86,  87],
         ...,
         [127, 121, 126],
         [123, 117, 122],
         [116, 110, 115]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-256-_jpg.rf.e7df3aab64f144506e0d276e972a5f73.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6963481903076172, 'inference': 9.00721549987793, 'postprocess': 0.36263465881347656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[7, 0, 0],
         [7, 0, 0],
         [5, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[7, 0, 0],
         [5, 0, 0],
         [5, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[5, 0, 0],
         [4, 0, 0],
         [4, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.5dc1fecc0c1bd209ca05c88618583504.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.401662826538086, 'inference': 9.059667587280273, 'postprocess': 0.5526542663574219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 72, 113,  86],
         [ 54,  95,  68],
         [ 52,  93,  65],
         ...,
         [ 22,  12,   5],
         [  5,   6,   2],
         [ 13,  20,  15]],
 
        [[ 71, 110,  84],
         [ 44,  83,  57],
         [ 31,  71,  43],
         ...,
         [ 25,  15,   8],
         [ 15,  17,  11],
         [ 15,  22,  17]],
 
        [[ 73, 109,  85],
         [ 40,  77,  51],
         [ 15,  53,  25],
         ...,
         [ 28,  18,  11],
         [ 17,  17,  11],
         [  0,   6,   1]],
 
        ...,
 
        [[ 52,  56,  61],
         [ 38,  42,  47],
         [ 53,  57,  62],
         ...,
         [159, 177, 184],
         [225, 241, 248],
         [234, 250, 255]],
 
        [[ 82,  86,  91],
         [ 75,  79,  84],
         [ 82,  86,  91],
         ...,
         [154, 172, 179],
         [198, 214, 221],
         [200, 216, 223]],
 
        [[ 91,  95, 100],
         [ 92,  96, 101],
         [ 94,  98, 103],
         ...,
         [137, 155, 162],
         [186, 202, 209],
         [198, 214, 221]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.821cd6dd9ff8fdcc6286183f5688755a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7828941345214844, 'inference': 9.00411605834961, 'postprocess': 0.3409385681152344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-258-_jpg.rf.fcdd3609bc1d58a34086a5a3e6ce2097.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6014575958251953, 'inference': 10.197162628173828, 'postprocess': 0.35381317138671875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[116, 116, 116],
         [128, 128, 128],
         [143, 143, 143],
         ...,
         [155, 152, 161],
         [128, 125, 134],
         [127, 124, 133]],
 
        [[118, 118, 118],
         [129, 129, 129],
         [142, 142, 142],
         ...,
         [143, 140, 149],
         [104, 101, 110],
         [ 91,  88,  97]],
 
        [[121, 121, 121],
         [129, 129, 129],
         [141, 141, 141],
         ...,
         [157, 154, 163],
         [131, 128, 137],
         [125, 122, 131]],
 
        ...,
 
        [[ 84,  84,  84],
         [ 63,  63,  63],
         [ 66,  66,  66],
         ...,
         [117, 128, 136],
         [112, 123, 131],
         [108, 119, 127]],
 
        [[142, 142, 142],
         [ 90,  90,  90],
         [ 63,  63,  63],
         ...,
         [113, 124, 132],
         [108, 119, 127],
         [105, 116, 124]],
 
        [[112, 112, 112],
         [ 56,  56,  56],
         [ 47,  47,  47],
         ...,
         [110, 121, 129],
         [106, 117, 125],
         [103, 114, 122]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.47ec4246b71311c95725c8e5c02049a3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6510486602783203, 'inference': 11.811971664428711, 'postprocess': 0.6773471832275391},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.4a53c38246579af08ffa2398e0d809aa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5819072723388672, 'inference': 9.559869766235352, 'postprocess': 0.3273487091064453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  5,   5,   5],
         [  4,   4,   4],
         [  6,   6,   6],
         ...,
         [134, 141, 150],
         [145, 152, 161],
         [ 50,  57,  66]],
 
        [[  5,   5,   5],
         [  4,   4,   4],
         [  6,   6,   6],
         ...,
         [125, 132, 141],
         [127, 134, 143],
         [ 33,  40,  49]],
 
        [[  5,   5,   5],
         [  4,   4,   4],
         [  6,   6,   6],
         ...,
         [131, 138, 147],
         [118, 125, 134],
         [ 21,  28,  37]],
 
        ...,
 
        [[  5,   5,   5],
         [  7,   7,   7],
         [  5,   5,   5],
         ...,
         [  5,   5,   5],
         [  5,   5,   5],
         [  5,   5,   5]],
 
        [[  9,   9,   9],
         [  6,   6,   6],
         [  6,   6,   6],
         ...,
         [  5,   5,   5],
         [  5,   5,   5],
         [  5,   5,   5]],
 
        [[  8,   8,   8],
         [  4,   4,   4],
         [  4,   4,   4],
         ...,
         [  5,   5,   5],
         [  5,   5,   5],
         [  5,   5,   5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-259-_jpg.rf.d407eb770f6e539c7d1021089da068bc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.402139663696289, 'inference': 9.135246276855469, 'postprocess': 0.3685951232910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        ...,
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.50fba6db0c31398bb0ad36b22f1cf88f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0415782928466797, 'inference': 12.480497360229492, 'postprocess': 0.6792545318603516},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        ...,
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.9be8ea96b8bb643747babec0e006e3a8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.958608627319336, 'inference': 9.255409240722656, 'postprocess': 0.4305839538574219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 59,  51,  58],
         [ 67,  59,  66],
         [ 70,  62,  69],
         ...,
         [203, 197, 214],
         [194, 188, 205],
         [203, 197, 214]],
 
        [[ 61,  53,  60],
         [ 68,  60,  67],
         [ 71,  63,  70],
         ...,
         [200, 194, 211],
         [195, 189, 206],
         [202, 196, 213]],
 
        [[ 56,  48,  55],
         [ 63,  55,  62],
         [ 66,  58,  65],
         ...,
         [194, 188, 205],
         [195, 189, 206],
         [199, 193, 210]],
 
        ...,
 
        [[ 53,  42,  45],
         [ 69,  58,  61],
         [ 76,  65,  68],
         ...,
         [154, 148, 159],
         [146, 138, 149],
         [105,  97, 108]],
 
        [[ 39,  28,  31],
         [ 54,  43,  46],
         [ 59,  48,  51],
         ...,
         [108, 100, 111],
         [144, 136, 147],
         [161, 151, 163]],
 
        [[ 47,  36,  39],
         [ 59,  48,  51],
         [ 60,  49,  52],
         ...,
         [129, 121, 132],
         [133, 123, 135],
         [174, 164, 176]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-26-_jpg.rf.cd93dd54b669257758fd0cdafe4f0032.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3315677642822266, 'inference': 9.43136215209961, 'postprocess': 0.3743171691894531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[211, 204, 211],
         [189, 182, 189],
         [184, 177, 184],
         ...,
         [218, 221, 225],
         [221, 224, 228],
         [217, 220, 224]],
 
        [[202, 198, 204],
         [207, 203, 209],
         [191, 187, 193],
         ...,
         [196, 199, 203],
         [205, 208, 212],
         [222, 225, 229]],
 
        [[203, 204, 208],
         [232, 233, 237],
         [232, 231, 235],
         ...,
         [214, 217, 221],
         [205, 208, 212],
         [202, 205, 209]],
 
        ...,
 
        [[ 47,  50,  58],
         [ 46,  49,  57],
         [ 47,  50,  58],
         ...,
         [ 46,  45,  47],
         [ 34,  30,  35],
         [ 14,  10,  15]],
 
        [[ 58,  61,  69],
         [ 55,  58,  66],
         [ 52,  55,  63],
         ...,
         [ 49,  48,  50],
         [ 43,  39,  44],
         [ 23,  19,  24]],
 
        [[ 71,  74,  82],
         [ 66,  69,  77],
         [ 58,  61,  69],
         ...,
         [ 34,  33,  35],
         [ 43,  39,  44],
         [ 36,  32,  37]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.3af45c18af9183dbab32f9e489034912.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0439624786376953, 'inference': 9.570121765136719, 'postprocess': 0.3871917724609375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        ...,
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]],
 
        [[59, 59, 59],
         [59, 59, 59],
         [59, 59, 59],
         ...,
         [59, 59, 59],
         [59, 59, 59],
         [59, 59, 59]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.76bee172574bbacef55e6935f031bf20.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8963813781738281, 'inference': 14.356851577758789, 'postprocess': 0.7290840148925781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-260-_jpg.rf.b88fd61a801b35b27593f7fcbfed4f1b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7592906951904297, 'inference': 8.930206298828125, 'postprocess': 0.5035400390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  1,  0],
         [ 0,  0, 13],
         [ 4,  0, 22]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  3,  0],
         [ 5,  1, 12],
         [ 2,  0, 16]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  7,  0],
         [ 5,  6,  4],
         [ 0,  0,  4]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.2b6a7b01bb03728cc1c166db16e462e5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3926029205322266, 'inference': 9.94873046875, 'postprocess': 0.4734992980957031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        ...,
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]],
 
        [[117, 117, 117],
         [117, 117, 117],
         [117, 117, 117],
         ...,
         [117, 117, 117],
         [117, 117, 117],
         [117, 117, 117]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.998892ecacb90555cc17a10e7717e639.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.703500747680664, 'inference': 9.139299392700195, 'postprocess': 0.6759166717529297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[168, 197,  27],
         [167, 196,  26],
         [166, 195,  25],
         ...,
         [  2,  11,  15],
         [ 37,  48,  52],
         [ 53,  65,  69]],
 
        [[168, 197,  27],
         [167, 196,  26],
         [166, 195,  25],
         ...,
         [  7,  16,  19],
         [ 35,  46,  50],
         [ 46,  58,  60]],
 
        [[167, 196,  27],
         [166, 195,  26],
         [165, 194,  25],
         ...,
         [  6,  14,  14],
         [ 37,  46,  49],
         [ 52,  62,  62]],
 
        ...,
 
        [[172, 176, 177],
         [173, 177, 178],
         [175, 179, 180],
         ...,
         [176, 179, 183],
         [176, 179, 183],
         [176, 179, 183]],
 
        [[171, 175, 176],
         [172, 176, 177],
         [175, 179, 180],
         ...,
         [177, 180, 185],
         [177, 180, 185],
         [176, 179, 184]],
 
        [[170, 174, 175],
         [172, 176, 177],
         [175, 179, 180],
         ...,
         [177, 180, 185],
         [177, 180, 185],
         [177, 180, 185]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-261-_jpg.rf.a966d2dffd8b171b302656a73d5b9d35.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6949176788330078, 'inference': 9.33694839477539, 'postprocess': 0.3616809844970703},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        ...,
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.1d9a2cc87b0162c31ffde047cca87a81.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5447139739990234, 'inference': 9.489774703979492, 'postprocess': 0.3840923309326172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[141, 145, 146],
         [138, 142, 143],
         [134, 138, 139],
         ...,
         [194, 196, 196],
         [194, 196, 196],
         [187, 189, 189]],
 
        [[155, 159, 160],
         [147, 151, 152],
         [139, 143, 144],
         ...,
         [194, 196, 196],
         [186, 188, 188],
         [177, 179, 179]],
 
        [[148, 152, 153],
         [140, 144, 145],
         [133, 137, 138],
         ...,
         [203, 205, 205],
         [199, 201, 201],
         [197, 199, 199]],
 
        ...,
 
        [[114, 113, 115],
         [142, 141, 143],
         [161, 160, 162],
         ...,
         [ 78,  76,  76],
         [ 80,  75,  76],
         [ 81,  76,  77]],
 
        [[124, 123, 125],
         [157, 156, 158],
         [161, 160, 162],
         ...,
         [ 76,  74,  74],
         [ 78,  73,  74],
         [ 81,  76,  77]],
 
        [[125, 124, 126],
         [159, 158, 160],
         [151, 150, 152],
         ...,
         [ 76,  74,  74],
         [ 78,  73,  74],
         [ 82,  77,  78]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.6219b6cecf8a84cc4bd3139144ade94f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6846656799316406, 'inference': 9.456396102905273, 'postprocess': 0.6680488586425781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-264-_jpg.rf.b1224cd0b28b41a38580f8f73315e5be.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3654232025146484, 'inference': 9.810447692871094, 'postprocess': 0.7712841033935547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[239, 227, 221],
         [239, 227, 221],
         [239, 227, 221],
         ...,
         [229, 219, 212],
         [229, 219, 212],
         [229, 219, 212]],
 
        [[239, 227, 221],
         [239, 227, 221],
         [239, 227, 221],
         ...,
         [229, 219, 212],
         [229, 219, 212],
         [229, 219, 212]],
 
        [[238, 226, 220],
         [238, 226, 220],
         [238, 226, 220],
         ...,
         [231, 219, 213],
         [231, 219, 213],
         [231, 219, 213]],
 
        ...,
 
        [[ 64,  56,  56],
         [ 71,  63,  63],
         [ 59,  51,  51],
         ...,
         [ 26,  16,  16],
         [ 27,  17,  17],
         [ 25,  15,  15]],
 
        [[ 62,  54,  54],
         [ 74,  66,  66],
         [ 61,  53,  53],
         ...,
         [ 24,  14,  14],
         [ 27,  17,  17],
         [ 27,  17,  17]],
 
        [[ 59,  51,  51],
         [ 82,  74,  74],
         [ 76,  68,  68],
         ...,
         [ 23,  13,  13],
         [ 27,  17,  17],
         [ 28,  18,  18]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.4c610d0dfdc177368e2334a82ff5513a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8017292022705078, 'inference': 9.378910064697266, 'postprocess': 0.33211708068847656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.55be0618279efba17a40682b25ec9fab.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7380714416503906, 'inference': 11.977910995483398, 'postprocess': 0.6902217864990234},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-265-_jpg.rf.98e8661b5363f6c6bcf399738c291cf2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3720989227294922, 'inference': 14.006853103637695, 'postprocess': 0.743865966796875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        ...,
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.43407daa6e772a254285f6bf1098a9b2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9021034240722656, 'inference': 12.734174728393555, 'postprocess': 0.48661231994628906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.5924896fbc8c112511de0c67db59435b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4333724975585938, 'inference': 9.499311447143555, 'postprocess': 0.6916522979736328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 33,  80,  72],
         [152, 197, 188],
         [ 41,  78,  70],
         ...,
         [ 15,  42,  52],
         [  0,   0,  11],
         [ 11,  39,  50]],
 
        [[ 42,  87,  78],
         [136, 179, 170],
         [ 63, 100,  90],
         ...,
         [ 33,  58,  68],
         [ 40,  65,  75],
         [  0,  21,  31]],
 
        [[ 92, 135, 124],
         [ 85, 125, 113],
         [ 43,  79,  67],
         ...,
         [101, 120, 128],
         [  5,  24,  32],
         [ 24,  43,  51]],
 
        ...,
 
        [[186, 185, 187],
         [176, 175, 177],
         [189, 188, 190],
         ...,
         [192, 198, 205],
         [171, 177, 184],
         [170, 176, 183]],
 
        [[171, 170, 172],
         [167, 166, 168],
         [195, 194, 196],
         ...,
         [193, 197, 202],
         [171, 175, 180],
         [180, 184, 189]],
 
        [[181, 180, 182],
         [195, 194, 196],
         [188, 187, 189],
         ...,
         [184, 188, 193],
         [164, 168, 173],
         [181, 185, 190]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-266-_jpg.rf.97039c9e51a9baa0832be4ebd044110d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6524791717529297, 'inference': 9.526968002319336, 'postprocess': 0.38170814514160156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        ...,
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]],
 
        [[15, 15, 15],
         [15, 15, 15],
         [15, 15, 15],
         ...,
         [15, 15, 15],
         [15, 15, 15],
         [15, 15, 15]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.4e80309c7e97b759c02f198b4f8258e0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9156932830810547, 'inference': 9.490251541137695, 'postprocess': 0.36597251892089844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[143, 153, 163],
         [138, 148, 158],
         [131, 143, 153],
         ...,
         [164, 156, 149],
         [164, 156, 149],
         [165, 157, 150]],
 
        [[136, 146, 156],
         [137, 147, 157],
         [138, 150, 160],
         ...,
         [164, 156, 149],
         [164, 156, 149],
         [164, 156, 149]],
 
        [[148, 158, 168],
         [152, 162, 172],
         [157, 169, 179],
         ...,
         [163, 155, 148],
         [163, 155, 148],
         [164, 156, 149]],
 
        ...,
 
        [[159, 162, 166],
         [158, 161, 165],
         [164, 168, 169],
         ...,
         [ 41,  39,  39],
         [ 36,  33,  35],
         [ 35,  32,  34]],
 
        [[157, 162, 165],
         [164, 169, 172],
         [175, 179, 180],
         ...,
         [ 36,  31,  33],
         [ 34,  29,  31],
         [ 36,  31,  33]],
 
        [[159, 164, 167],
         [186, 191, 194],
         [195, 199, 200],
         ...,
         [ 36,  31,  33],
         [ 34,  29,  31],
         [ 37,  32,  34]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.9bb1142dec3532e4e8b716d3a438ac05.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4798641204833984, 'inference': 9.156942367553711, 'postprocess': 0.335693359375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-267-_jpg.rf.a52b175e07343220015b707b9886e0e1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7828941345214844, 'inference': 9.301424026489258, 'postprocess': 0.37479400634765625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[249, 249, 249],
         [235, 235, 235],
         [244, 244, 244],
         ...,
         [ 34,  24,  14],
         [ 32,  23,  13],
         [ 34,  25,  15]],
 
        [[255, 255, 255],
         [243, 243, 243],
         [249, 249, 249],
         ...,
         [ 40,  30,  20],
         [ 43,  33,  23],
         [ 42,  33,  23]],
 
        [[255, 255, 255],
         [249, 249, 249],
         [252, 252, 252],
         ...,
         [ 81,  69,  59],
         [ 63,  53,  43],
         [ 36,  26,  16]],
 
        ...,
 
        [[ 57,  65,  65],
         [ 62,  70,  70],
         [ 77,  82,  83],
         ...,
         [ 72,  83,  81],
         [ 74,  85,  83],
         [ 69,  80,  78]],
 
        [[ 62,  67,  70],
         [ 66,  71,  74],
         [ 77,  82,  85],
         ...,
         [ 66,  77,  75],
         [ 66,  76,  76],
         [ 59,  69,  69]],
 
        [[ 68,  73,  76],
         [ 70,  75,  78],
         [ 78,  83,  86],
         ...,
         [ 59,  70,  68],
         [ 57,  67,  67],
         [ 49,  59,  59]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.323d61640ba6fcc13042b787260e36bb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4140605926513672, 'inference': 9.694099426269531, 'postprocess': 0.2732276916503906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.87ee237323b54bf65900f2fe8742e27b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6624927520751953, 'inference': 9.456396102905273, 'postprocess': 0.3426074981689453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-268-_jpg.rf.c49fc76803dd19f43665c0ced1377750.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.60980224609375, 'inference': 9.863615036010742, 'postprocess': 0.6594657897949219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.002253fdb0ed4584e018df6ffa261117.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.729726791381836, 'inference': 12.758970260620117, 'postprocess': 0.8783340454101562},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.0a7c7409d5dc54a17f739f3fcc1dfbfb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8575191497802734, 'inference': 10.833263397216797, 'postprocess': 0.4482269287109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[128, 128, 134],
         [136, 136, 142],
         [147, 148, 152],
         ...,
         [252, 248, 247],
         [253, 249, 248],
         [249, 245, 244]],
 
        [[128, 128, 134],
         [136, 136, 142],
         [146, 147, 151],
         ...,
         [251, 248, 244],
         [246, 243, 239],
         [238, 235, 231]],
 
        [[128, 128, 134],
         [136, 136, 142],
         [146, 147, 151],
         ...,
         [249, 246, 241],
         [245, 242, 237],
         [239, 236, 231]],
 
        ...,
 
        [[113, 116, 120],
         [150, 153, 157],
         [144, 148, 149],
         ...,
         [125, 130, 129],
         [132, 137, 136],
         [130, 135, 134]],
 
        [[136, 139, 143],
         [143, 146, 150],
         [136, 140, 141],
         ...,
         [126, 131, 130],
         [129, 134, 133],
         [128, 133, 132]],
 
        [[151, 154, 158],
         [126, 129, 133],
         [127, 131, 132],
         ...,
         [124, 129, 128],
         [124, 129, 128],
         [121, 126, 125]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-272-_jpg.rf.9c136160d287bbdaaaa5e6027f75ba97.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.374959945678711, 'inference': 9.293317794799805, 'postprocess': 0.5145072937011719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  8,  10,  10],
         [  5,   7,   7],
         [  6,   8,   8],
         ...,
         [  8,   8,   8],
         [  7,   7,   7],
         [  6,   6,   6]],
 
        [[  8,  10,  10],
         [  5,   7,   7],
         [  6,   8,   8],
         ...,
         [  7,   7,   7],
         [  6,   6,   6],
         [  6,   6,   6]],
 
        [[  8,  10,  10],
         [  5,   7,   7],
         [  4,   6,   6],
         ...,
         [  6,   6,   6],
         [  6,   6,   6],
         [  5,   5,   5]],
 
        ...,
 
        [[ 55,  50,  51],
         [ 54,  49,  50],
         [ 58,  53,  54],
         ...,
         [ 87,  77,  77],
         [ 79,  69,  69],
         [ 76,  66,  66]],
 
        [[ 52,  47,  48],
         [ 50,  45,  46],
         [ 61,  56,  57],
         ...,
         [102,  92,  92],
         [ 91,  81,  81],
         [ 84,  74,  74]],
 
        [[ 53,  48,  49],
         [ 50,  45,  46],
         [ 63,  58,  59],
         ...,
         [113, 103, 103],
         [101,  91,  91],
         [ 90,  80,  80]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.46a9e2047dced3e94c4fa2aab121859b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.058267593383789, 'inference': 12.373208999633789, 'postprocess': 0.7674694061279297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [18, 20, 20],
         [18, 20, 20],
         [18, 20, 20]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [19, 21, 21],
         [19, 21, 21],
         [19, 21, 21]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [20, 22, 22],
         [20, 22, 22],
         [20, 22, 22]],
 
        ...,
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.5205af7f7d0021ecd8ac84b895d7be99.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.2760162353515625, 'inference': 9.593725204467773, 'postprocess': 0.3979206085205078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-274-_jpg.rf.ce4479c25a7c7d6c8b8d001c488a4f6d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8067359924316406, 'inference': 14.606475830078125, 'postprocess': 0.8542537689208984},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[117, 106, 109],
         [114, 103, 106],
         [117, 108, 111],
         ...,
         [196, 200, 205],
         [188, 192, 197],
         [195, 199, 204]],
 
        [[113, 102, 105],
         [113, 102, 105],
         [122, 113, 116],
         ...,
         [195, 199, 204],
         [191, 195, 200],
         [193, 197, 202]],
 
        [[123, 114, 117],
         [118, 109, 112],
         [122, 113, 116],
         ...,
         [181, 185, 190],
         [189, 193, 198],
         [192, 196, 201]],
 
        ...,
 
        [[100,  96, 102],
         [ 92,  88,  94],
         [ 87,  83,  89],
         ...,
         [142, 142, 148],
         [127, 127, 133],
         [126, 126, 132]],
 
        [[ 91,  87,  93],
         [ 84,  80,  86],
         [ 78,  74,  80],
         ...,
         [141, 141, 147],
         [135, 135, 141],
         [129, 129, 135]],
 
        [[ 89,  85,  91],
         [ 82,  78,  84],
         [ 72,  68,  74],
         ...,
         [146, 146, 152],
         [141, 141, 147],
         [129, 129, 135]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.98225472f61e9de4245a1da0fc036230.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6582012176513672, 'inference': 14.200210571289062, 'postprocess': 0.7529258728027344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 1,  3,  3],
         [ 0,  0,  0],
         [ 0,  1,  2],
         ...,
         [49, 44, 43],
         [73, 68, 67],
         [ 5,  0,  0]],
 
        [[ 0,  2,  2],
         [ 0,  0,  0],
         [ 0,  1,  2],
         ...,
         [49, 44, 43],
         [73, 68, 67],
         [ 5,  0,  0]],
 
        [[ 0,  1,  1],
         [ 0,  0,  0],
         [ 0,  1,  2],
         ...,
         [44, 39, 38],
         [64, 59, 58],
         [ 5,  0,  0]],
 
        ...,
 
        [[ 2,  1,  3],
         [ 2,  1,  3],
         [ 2,  1,  3],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  1],
         [ 0,  0,  1],
         [ 0,  0,  1],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 5,  4,  6],
         [ 2,  1,  3],
         [ 0,  0,  1],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.cd2ef0884568491ec2ce61a16f085324.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4138221740722656, 'inference': 9.912729263305664, 'postprocess': 0.8029937744140625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-275-_jpg.rf.d21f3ba7cea2b4ce92516d08a7ea0c6d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7685890197753906, 'inference': 9.672880172729492, 'postprocess': 0.4189014434814453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[108, 103, 104],
         [108, 103, 104],
         [108, 103, 104],
         ...,
         [104, 104, 104],
         [104, 104, 104],
         [104, 104, 104]],
 
        [[108, 103, 104],
         [108, 103, 104],
         [108, 103, 104],
         ...,
         [104, 104, 104],
         [104, 104, 104],
         [104, 104, 104]],
 
        [[106, 104, 104],
         [106, 104, 104],
         [106, 104, 104],
         ...,
         [104, 104, 104],
         [104, 104, 104],
         [104, 104, 104]],
 
        ...,
 
        [[104, 104, 104],
         [104, 104, 104],
         [104, 104, 104],
         ...,
         [104, 104, 104],
         [104, 104, 104],
         [104, 104, 104]],
 
        [[104, 104, 104],
         [104, 104, 104],
         [104, 104, 104],
         ...,
         [104, 104, 104],
         [104, 104, 104],
         [104, 104, 104]],
 
        [[104, 104, 104],
         [104, 104, 104],
         [104, 104, 104],
         ...,
         [104, 104, 104],
         [104, 104, 104],
         [104, 104, 104]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.792c2b69462ae79fca0cca74330fe0e7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5053749084472656, 'inference': 9.718894958496094, 'postprocess': 0.3993511199951172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[67, 67, 67],
         [67, 67, 67],
         [67, 67, 67],
         ...,
         [67, 67, 67],
         [67, 67, 67],
         [67, 67, 67]],
 
        [[67, 67, 67],
         [67, 67, 67],
         [67, 67, 67],
         ...,
         [67, 67, 67],
         [67, 67, 67],
         [67, 67, 67]],
 
        [[67, 67, 67],
         [67, 67, 67],
         [67, 67, 67],
         ...,
         [67, 67, 67],
         [67, 67, 67],
         [67, 67, 67]],
 
        ...,
 
        [[67, 67, 67],
         [67, 67, 67],
         [67, 67, 67],
         ...,
         [67, 67, 67],
         [67, 67, 67],
         [67, 67, 67]],
 
        [[67, 67, 67],
         [67, 67, 67],
         [67, 67, 67],
         ...,
         [67, 67, 67],
         [67, 67, 67],
         [67, 67, 67]],
 
        [[67, 67, 67],
         [67, 67, 67],
         [67, 67, 67],
         ...,
         [67, 67, 67],
         [67, 67, 67],
         [67, 67, 67]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.85ffbef727ecf81dbdc795cf0071fde4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.074718475341797, 'inference': 13.693571090698242, 'postprocess': 0.6835460662841797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[191, 174, 161],
         [189, 172, 159],
         [184, 168, 155],
         ...,
         [128,  96,  77],
         [129,  97,  78],
         [138, 106,  87]],
 
        [[179, 163, 150],
         [178, 162, 149],
         [176, 160, 147],
         ...,
         [140, 108,  89],
         [141, 108,  92],
         [148, 116,  97]],
 
        [[146, 133, 119],
         [144, 133, 119],
         [143, 132, 118],
         ...,
         [159, 129, 112],
         [163, 132, 117],
         [167, 137, 120]],
 
        ...,
 
        [[168, 173, 172],
         [164, 169, 168],
         [162, 167, 166],
         ...,
         [160, 158, 158],
         [159, 157, 157],
         [159, 157, 157]],
 
        [[168, 173, 172],
         [164, 169, 168],
         [163, 168, 167],
         ...,
         [159, 157, 157],
         [158, 156, 156],
         [157, 155, 155]],
 
        [[167, 172, 171],
         [164, 169, 168],
         [163, 168, 167],
         ...,
         [158, 156, 156],
         [157, 155, 155],
         [156, 154, 154]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-276-_jpg.rf.8d4273fdb3b241213a5685129666cde6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.737356185913086, 'inference': 12.537479400634766, 'postprocess': 0.5297660827636719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[120, 123, 121],
         [120, 123, 121],
         [120, 123, 121],
         ...,
         [122, 123, 127],
         [123, 125, 126],
         [123, 125, 126]],
 
        [[127, 128, 126],
         [125, 128, 126],
         [127, 128, 126],
         ...,
         [119, 120, 124],
         [119, 121, 122],
         [118, 120, 121]],
 
        [[127, 125, 124],
         [125, 126, 124],
         [126, 124, 123],
         ...,
         [122, 123, 127],
         [121, 123, 124],
         [121, 123, 124]],
 
        ...,
 
        [[124, 124, 124],
         [124, 124, 124],
         [124, 124, 124],
         ...,
         [124, 124, 124],
         [124, 124, 124],
         [124, 124, 124]],
 
        [[124, 124, 124],
         [124, 124, 124],
         [124, 124, 124],
         ...,
         [124, 124, 124],
         [124, 124, 124],
         [124, 124, 124]],
 
        [[124, 124, 124],
         [124, 124, 124],
         [124, 124, 124],
         ...,
         [124, 124, 124],
         [124, 124, 124],
         [124, 124, 124]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.d1a4a881471530c27e8e6acefaae408d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9042491912841797, 'inference': 12.099981307983398, 'postprocess': 0.4324913024902344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[255, 243, 219],
         [255, 243, 219],
         [255, 243, 219],
         ...,
         [255, 242, 239],
         [255, 242, 239],
         [255, 242, 239]],
 
        [[255, 243, 219],
         [255, 243, 219],
         [255, 243, 219],
         ...,
         [243, 228, 225],
         [245, 228, 225],
         [244, 227, 224]],
 
        [[255, 243, 219],
         [255, 243, 219],
         [255, 243, 219],
         ...,
         [236, 221, 219],
         [235, 220, 218],
         [234, 219, 217]],
 
        ...,
 
        [[193, 192, 194],
         [180, 179, 181],
         [168, 167, 169],
         ...,
         [184, 181, 183],
         [192, 189, 191],
         [191, 188, 190]],
 
        [[198, 197, 199],
         [188, 187, 189],
         [173, 172, 174],
         ...,
         [179, 176, 178],
         [189, 186, 188],
         [191, 188, 190]],
 
        [[189, 188, 190],
         [187, 186, 188],
         [176, 175, 177],
         ...,
         [183, 180, 182],
         [192, 189, 191],
         [193, 190, 192]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.e2e29a600dcb8450df911104cf88b38d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8966197967529297, 'inference': 10.267972946166992, 'postprocess': 0.35881996154785156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        ...,
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-277-_jpg.rf.ec1e5c4b6a23a9196e33d1937e2fddcf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6584396362304688, 'inference': 10.223627090454102, 'postprocess': 0.5660057067871094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.102a71b41c699ef91c98ee9acb233241.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8045902252197266, 'inference': 9.21487808227539, 'postprocess': 0.4246234893798828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.161161ebb6d47b347f2c6012b1c88898.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6815662384033203, 'inference': 12.412786483764648, 'postprocess': 0.5233287811279297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[143, 139, 138],
         [143, 139, 138],
         [142, 138, 137],
         ...,
         [106, 172, 153],
         [ 99, 165, 146],
         [ 97, 163, 144]],
 
        [[142, 138, 137],
         [143, 139, 138],
         [143, 139, 138],
         ...,
         [111, 177, 158],
         [105, 171, 152],
         [104, 170, 151]],
 
        [[142, 138, 137],
         [142, 138, 137],
         [143, 139, 138],
         ...,
         [117, 181, 162],
         [113, 177, 158],
         [113, 177, 158]],
 
        ...,
 
        [[ 49,  54,  52],
         [ 56,  61,  59],
         [ 56,  61,  59],
         ...,
         [102, 106, 101],
         [ 73,  77,  72],
         [ 84,  88,  83]],
 
        [[ 60,  65,  63],
         [ 68,  73,  71],
         [ 68,  73,  71],
         ...,
         [ 96, 100,  95],
         [ 79,  83,  78],
         [ 78,  82,  77]],
 
        [[ 67,  72,  70],
         [ 74,  79,  77],
         [ 74,  79,  77],
         ...,
         [ 82,  86,  81],
         [ 83,  87,  82],
         [ 74,  78,  73]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-278-_jpg.rf.81490c823fe0f5ba5fc351b36c4fab79.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8248558044433594, 'inference': 9.407997131347656, 'postprocess': 0.4858970642089844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[210, 201, 181],
         [204, 195, 175],
         [195, 187, 164],
         ...,
         [158, 175, 184],
         [186, 203, 212],
         [207, 224, 233]],
 
        [[212, 203, 183],
         [206, 197, 177],
         [197, 189, 166],
         ...,
         [157, 174, 183],
         [185, 202, 211],
         [206, 223, 232]],
 
        [[214, 205, 185],
         [209, 200, 180],
         [200, 191, 171],
         ...,
         [155, 172, 181],
         [183, 200, 209],
         [204, 221, 230]],
 
        ...,
 
        [[197, 194, 196],
         [198, 195, 197],
         [189, 186, 188],
         ...,
         [190, 190, 190],
         [189, 189, 189],
         [188, 188, 188]],
 
        [[189, 186, 188],
         [192, 189, 191],
         [186, 183, 185],
         ...,
         [192, 192, 192],
         [190, 190, 190],
         [189, 189, 189]],
 
        [[185, 182, 184],
         [190, 187, 189],
         [186, 183, 185],
         ...,
         [193, 193, 193],
         [191, 191, 191],
         [190, 190, 190]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.387d558e33ac4c0afd2b684708d66271.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6782283782958984, 'inference': 9.294986724853516, 'postprocess': 0.6840229034423828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[85, 85, 85],
         [85, 85, 85],
         [85, 85, 85],
         ...,
         [85, 85, 85],
         [85, 85, 85],
         [85, 85, 85]],
 
        [[85, 85, 85],
         [85, 85, 85],
         [85, 85, 85],
         ...,
         [85, 85, 85],
         [85, 85, 85],
         [85, 85, 85]],
 
        [[85, 85, 85],
         [85, 85, 85],
         [85, 85, 85],
         ...,
         [85, 85, 85],
         [85, 85, 85],
         [85, 85, 85]],
 
        ...,
 
        [[85, 85, 85],
         [85, 85, 85],
         [85, 85, 85],
         ...,
         [85, 85, 85],
         [85, 85, 85],
         [85, 85, 85]],
 
        [[85, 85, 85],
         [85, 85, 85],
         [85, 85, 85],
         ...,
         [85, 85, 85],
         [85, 85, 85],
         [85, 85, 85]],
 
        [[85, 85, 85],
         [85, 85, 85],
         [85, 85, 85],
         ...,
         [85, 85, 85],
         [85, 85, 85],
         [85, 85, 85]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.aeb00c47b3179ead074b8f7b52971655.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5015602111816406, 'inference': 10.961532592773438, 'postprocess': 0.6947517395019531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[109, 109, 109],
         [109, 109, 109],
         [109, 109, 109],
         ...,
         [109, 109, 109],
         [109, 109, 109],
         [109, 109, 109]],
 
        [[109, 109, 109],
         [109, 109, 109],
         [109, 109, 109],
         ...,
         [109, 109, 109],
         [109, 109, 109],
         [109, 109, 109]],
 
        [[109, 109, 109],
         [109, 109, 109],
         [109, 109, 109],
         ...,
         [109, 109, 109],
         [109, 109, 109],
         [109, 109, 109]],
 
        ...,
 
        [[253, 251, 251],
         [254, 252, 252],
         [255, 254, 254],
         ...,
         [109, 109, 109],
         [109, 109, 109],
         [109, 109, 109]],
 
        [[250, 248, 248],
         [251, 249, 249],
         [252, 250, 250],
         ...,
         [109, 109, 109],
         [109, 109, 109],
         [109, 109, 109]],
 
        [[208, 206, 206],
         [208, 206, 206],
         [208, 206, 206],
         ...,
         [109, 109, 109],
         [109, 109, 109],
         [109, 109, 109]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-279-_jpg.rf.eb289e54650f25791d195ce8f1936cf8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9440650939941406, 'inference': 13.466596603393555, 'postprocess': 0.6244182586669922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.1cfd00374439fd72effee65dee2cfbf3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3356208801269531, 'inference': 12.334823608398438, 'postprocess': 0.7872581481933594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        ...,
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.44efc10266e3c4cb78efde437755b21f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8131732940673828, 'inference': 9.35673713684082, 'postprocess': 0.35309791564941406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[157, 142, 140],
         [156, 141, 139],
         [156, 141, 139],
         ...,
         [ 40,  34,  59],
         [ 44,  37,  64],
         [ 47,  40,  67]],
 
        [[160, 145, 143],
         [159, 144, 142],
         [158, 143, 141],
         ...,
         [ 34,  28,  53],
         [ 37,  30,  57],
         [ 40,  33,  60]],
 
        [[165, 150, 148],
         [164, 149, 147],
         [163, 148, 146],
         ...,
         [ 26,  20,  45],
         [ 30,  24,  49],
         [ 32,  26,  51]],
 
        ...,
 
        [[ 69,  77,  90],
         [ 69,  77,  90],
         [ 85,  93, 106],
         ...,
         [112, 107, 106],
         [112, 107, 106],
         [112, 107, 106]],
 
        [[ 72,  79,  94],
         [ 49,  56,  71],
         [ 53,  61,  74],
         ...,
         [111, 106, 105],
         [112, 107, 106],
         [114, 109, 108]],
 
        [[ 80,  87, 102],
         [ 40,  47,  62],
         [ 33,  41,  54],
         ...,
         [111, 106, 105],
         [113, 108, 107],
         [114, 109, 108]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-280-_jpg.rf.a7c2022cd08be88cf40fb7473457b1bd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6684532165527344, 'inference': 10.112524032592773, 'postprocess': 0.6501674652099609},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        ...,
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]],
 
        [[110, 110, 110],
         [110, 110, 110],
         [110, 110, 110],
         ...,
         [110, 110, 110],
         [110, 110, 110],
         [110, 110, 110]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.20f2248677b69cd0b78705416c578c8f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6140937805175781, 'inference': 9.429931640625, 'postprocess': 0.4038810729980469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.364ad6841f1f703e567868636d3c5d9d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7008781433105469, 'inference': 9.832620620727539, 'postprocess': 0.4703998565673828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[246, 236, 226],
         [246, 236, 226],
         [246, 236, 226],
         ...,
         [134, 132, 122],
         [148, 146, 136],
         [168, 166, 156]],
 
        [[246, 236, 226],
         [246, 236, 226],
         [246, 236, 226],
         ...,
         [126, 124, 114],
         [143, 141, 131],
         [222, 220, 210]],
 
        [[246, 236, 226],
         [246, 236, 226],
         [246, 236, 226],
         ...,
         [146, 145, 135],
         [142, 141, 131],
         [177, 176, 166]],
 
        ...,
 
        [[ 92, 106, 105],
         [ 84,  98,  97],
         [107, 120, 122],
         ...,
         [114, 130, 146],
         [109, 125, 142],
         [102, 118, 135]],
 
        [[ 93, 107, 106],
         [ 69,  83,  82],
         [114, 127, 129],
         ...,
         [131, 149, 166],
         [128, 145, 164],
         [112, 129, 148]],
 
        [[ 95, 109, 108],
         [ 61,  75,  74],
         [118, 131, 133],
         ...,
         [146, 164, 181],
         [160, 177, 196],
         [106, 123, 142]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-281-_jpg.rf.91f845ebe6009e9c3be546fa34f1fb62.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3718605041503906, 'inference': 9.716987609863281, 'postprocess': 0.40078163146972656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.0dbe6d0d6778748a85926379c5f2e9e2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6493797302246094, 'inference': 9.783029556274414, 'postprocess': 0.3349781036376953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 23,  30,  27],
         [ 23,  30,  27],
         [ 22,  29,  26],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[ 25,  32,  29],
         [ 25,  32,  29],
         [ 25,  32,  29],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[ 27,  34,  31],
         [ 27,  34,  31],
         [ 28,  33,  31],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        ...,
 
        [[ 90,  87,  89],
         [ 76,  73,  75],
         [ 95,  92,  94],
         ...,
         [166, 166, 172],
         [131, 131, 137],
         [148, 148, 154]],
 
        [[ 95,  92,  94],
         [ 71,  68,  70],
         [ 96,  93,  95],
         ...,
         [165, 165, 171],
         [141, 141, 147],
         [166, 166, 172]],
 
        [[ 98,  95,  97],
         [ 69,  66,  68],
         [ 98,  95,  97],
         ...,
         [163, 163, 169],
         [148, 148, 154],
         [177, 177, 183]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.842cdce727f91b17dbe3c3da0eb40f53.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3308525085449219, 'inference': 9.138107299804688, 'postprocess': 0.6103515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        ...,
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]],
 
        [[14, 14, 14],
         [14, 14, 14],
         [14, 14, 14],
         ...,
         [14, 14, 14],
         [14, 14, 14],
         [14, 14, 14]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-282-_jpg.rf.f00b26bc9e0e6d37dfc28fb9dcca8d31.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.1147727966308594, 'inference': 9.67264175415039, 'postprocess': 0.44918060302734375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[195, 212, 225],
         [195, 212, 225],
         [187, 204, 217],
         ...,
         [ 18,  25,  20],
         [119, 127, 120],
         [144, 152, 145]],
 
        [[190, 207, 220],
         [188, 205, 218],
         [183, 200, 213],
         ...,
         [ 25,  32,  27],
         [122, 129, 124],
         [149, 157, 150]],
 
        [[185, 202, 215],
         [180, 197, 210],
         [179, 196, 209],
         ...,
         [ 35,  44,  41],
         [ 69,  78,  75],
         [ 89,  99,  93]],
 
        ...,
 
        [[ 80,  68,  88],
         [102,  91, 111],
         [129, 119, 136],
         ...,
         [ 71,  71,  77],
         [ 66,  66,  72],
         [ 80,  80,  86]],
 
        [[ 97,  84, 106],
         [ 84,  73,  93],
         [ 90,  80,  97],
         ...,
         [ 74,  74,  80],
         [ 61,  61,  67],
         [ 78,  78,  84]],
 
        [[ 93,  80, 102],
         [ 91,  80, 100],
         [ 81,  71,  88],
         ...,
         [ 80,  80,  86],
         [ 63,  63,  69],
         [ 82,  82,  88]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.40eb24734e3476c926a4c70fd547500c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8110275268554688, 'inference': 10.102272033691406, 'postprocess': 0.4849433898925781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        ...,
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]],
 
        [[6, 6, 6],
         [6, 6, 6],
         [6, 6, 6],
         ...,
         [6, 6, 6],
         [6, 6, 6],
         [6, 6, 6]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.c2b4badba5de7ededb5266fa40bff815.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4545917510986328, 'inference': 12.492179870605469, 'postprocess': 0.36406517028808594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-283-_jpg.rf.e5da98374205a9ad95cb1355a5d30d9a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5244483947753906, 'inference': 8.992433547973633, 'postprocess': 0.4544258117675781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[63, 63, 63],
         [63, 63, 63],
         [63, 63, 63],
         ...,
         [63, 63, 63],
         [63, 63, 63],
         [63, 63, 63]],
 
        [[63, 63, 63],
         [63, 63, 63],
         [63, 63, 63],
         ...,
         [63, 63, 63],
         [63, 63, 63],
         [63, 63, 63]],
 
        [[63, 63, 63],
         [63, 63, 63],
         [63, 63, 63],
         ...,
         [63, 63, 63],
         [63, 63, 63],
         [63, 63, 63]],
 
        ...,
 
        [[63, 63, 63],
         [63, 63, 63],
         [63, 63, 63],
         ...,
         [63, 63, 63],
         [63, 63, 63],
         [63, 63, 63]],
 
        [[63, 63, 63],
         [63, 63, 63],
         [63, 63, 63],
         ...,
         [63, 63, 63],
         [63, 63, 63],
         [63, 63, 63]],
 
        [[63, 63, 63],
         [63, 63, 63],
         [63, 63, 63],
         ...,
         [63, 63, 63],
         [63, 63, 63],
         [63, 63, 63]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.123096f07316bdbbb775d4e0edbfcb5e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3594627380371094, 'inference': 9.033679962158203, 'postprocess': 0.4050731658935547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   0],
         [  0,   0,   0],
         [  3,   5,   5],
         ...,
         [115, 120, 121],
         [110, 115, 116],
         [ 87,  92,  93]],
 
        [[  0,   1,   1],
         [  0,   0,   0],
         [  3,   5,   5],
         ...,
         [126, 131, 132],
         [118, 123, 124],
         [100, 105, 106]],
 
        [[  1,   3,   3],
         [  0,   0,   0],
         [  3,   5,   5],
         ...,
         [125, 130, 131],
         [112, 117, 118],
         [ 98, 103, 104]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   2,   2],
         [  3,   5,   5],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  6,   8,   8],
         [  0,   1,   1],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.56d84fad76218d5963847d758616e653.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.3055076599121094, 'inference': 9.064674377441406, 'postprocess': 0.4451274871826172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[101, 105, 110],
         [ 51,  55,  60],
         [ 64,  68,  73],
         ...,
         [180, 185, 188],
         [173, 178, 181],
         [152, 157, 160]],
 
        [[ 70,  74,  79],
         [ 76,  80,  85],
         [ 78,  82,  87],
         ...,
         [161, 166, 169],
         [148, 153, 156],
         [137, 142, 145]],
 
        [[ 93,  98, 101],
         [106, 111, 114],
         [111, 116, 119],
         ...,
         [123, 128, 131],
         [116, 121, 124],
         [134, 139, 142]],
 
        ...,
 
        [[103, 107, 108],
         [162, 166, 167],
         [185, 189, 190],
         ...,
         [144, 151, 154],
         [123, 130, 133],
         [103, 110, 113]],
 
        [[120, 124, 125],
         [195, 199, 200],
         [191, 195, 196],
         ...,
         [127, 134, 137],
         [101, 108, 111],
         [ 96, 103, 106]],
 
        [[108, 112, 113],
         [251, 255, 255],
         [184, 188, 189],
         ...,
         [116, 123, 126],
         [ 92,  99, 102],
         [113, 120, 123]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-284-_jpg.rf.684fdc990a5a35d7a5d296857475e65d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.781463623046875, 'inference': 11.662721633911133, 'postprocess': 0.9291172027587891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  8,   4,   9],
         [  6,   2,   7],
         [  5,   2,   4],
         ...,
         [  3,   4,   2],
         [  8,   9,   7],
         [  5,   6,   4]],
 
        [[ 11,   7,  12],
         [  7,   6,  10],
         [  7,   4,   6],
         ...,
         [  2,   3,   1],
         [  8,   9,   7],
         [  5,   6,   4]],
 
        [[  0,   0,   3],
         [  0,   0,   3],
         [  0,   0,   1],
         ...,
         [  3,   4,   2],
         [  8,   9,   7],
         [  5,   6,   4]],
 
        ...,
 
        [[154, 151, 147],
         [151, 148, 144],
         [151, 147, 146],
         ...,
         [  5,   5,   5],
         [  5,   5,   5],
         [  5,   5,   5]],
 
        [[150, 147, 142],
         [142, 139, 135],
         [137, 134, 130],
         ...,
         [  5,   5,   5],
         [  5,   5,   5],
         [  5,   5,   5]],
 
        [[ 96,  93,  88],
         [ 84,  81,  76],
         [ 74,  71,  67],
         ...,
         [  5,   5,   5],
         [  5,   5,   5],
         [  5,   5,   5]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.2bdafbee1a88e6d2a7fdf3367073e72e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.3627281188964844, 'inference': 11.8255615234375, 'postprocess': 0.6339550018310547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        ...,
 
        [[12, 10, 10],
         [12, 10, 10],
         [12, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [ 8, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.c3f2aadaa48b640a80c3ab44e41ffb04.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.1245479583740234, 'inference': 15.231847763061523, 'postprocess': 1.27410888671875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[239, 233, 234],
         [172, 166, 167],
         [158, 153, 154],
         ...,
         [255, 250, 243],
         [255, 250, 243],
         [227, 217, 210]],
 
        [[248, 242, 243],
         [189, 183, 184],
         [153, 148, 149],
         ...,
         [255, 246, 239],
         [251, 241, 234],
         [216, 206, 199]],
 
        [[255, 251, 252],
         [213, 208, 209],
         [149, 144, 145],
         ...,
         [253, 243, 236],
         [243, 233, 226],
         [210, 200, 193]],
 
        ...,
 
        [[128, 123, 124],
         [142, 137, 138],
         [141, 139, 139],
         ...,
         [111, 114, 118],
         [107, 110, 114],
         [105, 108, 112]],
 
        [[114, 109, 110],
         [143, 138, 139],
         [146, 144, 144],
         ...,
         [110, 113, 117],
         [108, 111, 115],
         [107, 110, 114]],
 
        [[136, 131, 132],
         [148, 143, 144],
         [126, 124, 124],
         ...,
         [109, 112, 116],
         [110, 113, 117],
         [111, 114, 118]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-285-_jpg.rf.e85f33f618c8853f1b77a75be13c5a95.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 3.994464874267578, 'inference': 16.159534454345703, 'postprocess': 0.9722709655761719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[252, 203, 157],
         [252, 203, 157],
         [252, 203, 157],
         ...,
         [224, 202, 167],
         [222, 202, 167],
         [222, 202, 167]],
 
        [[252, 203, 157],
         [252, 203, 157],
         [252, 203, 157],
         ...,
         [224, 202, 167],
         [222, 202, 167],
         [222, 202, 167]],
 
        [[252, 203, 157],
         [252, 203, 157],
         [252, 203, 157],
         ...,
         [224, 202, 167],
         [222, 202, 167],
         [222, 202, 167]],
 
        ...,
 
        [[127, 134, 137],
         [132, 139, 142],
         [134, 141, 144],
         ...,
         [ 97,  97,  97],
         [115, 115, 115],
         [122, 122, 122]],
 
        [[127, 134, 137],
         [131, 138, 141],
         [130, 137, 140],
         ...,
         [ 90,  90,  90],
         [116, 116, 116],
         [134, 134, 134]],
 
        [[127, 134, 137],
         [130, 137, 140],
         [128, 135, 138],
         ...,
         [ 85,  85,  85],
         [112, 112, 112],
         [132, 132, 132]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.51113a90d61bab00d4fe0edcd5e45d9b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.5801658630371094, 'inference': 12.490272521972656, 'postprocess': 0.64849853515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[53, 48, 50],
         [53, 48, 50],
         [53, 48, 50],
         ...,
         [51, 49, 49],
         [56, 48, 49],
         [58, 47, 49]],
 
        [[53, 48, 50],
         [53, 48, 50],
         [53, 48, 50],
         ...,
         [51, 49, 49],
         [56, 48, 49],
         [58, 47, 49]],
 
        [[51, 47, 52],
         [51, 47, 52],
         [51, 47, 52],
         ...,
         [51, 49, 49],
         [54, 48, 49],
         [56, 48, 49]],
 
        ...,
 
        [[49, 49, 49],
         [49, 49, 49],
         [49, 49, 49],
         ...,
         [49, 49, 49],
         [49, 49, 49],
         [49, 49, 49]],
 
        [[49, 49, 49],
         [49, 49, 49],
         [49, 49, 49],
         ...,
         [49, 49, 49],
         [49, 49, 49],
         [49, 49, 49]],
 
        [[49, 49, 49],
         [49, 49, 49],
         [49, 49, 49],
         ...,
         [49, 49, 49],
         [49, 49, 49],
         [49, 49, 49]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.e2281030be53c236e0e2f7731df0f5b3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.589059829711914, 'inference': 9.028196334838867, 'postprocess': 0.5195140838623047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-286-_jpg.rf.e5f176bec46993c0c6cda6588e9d5ecf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4102458953857422, 'inference': 9.021997451782227, 'postprocess': 0.3955364227294922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.87156b9d129afc59b232dcc6247af143.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6934871673583984, 'inference': 9.244203567504883, 'postprocess': 0.4048347473144531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.9ebbae06b203eacb7891199e3ae03e78.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.340627670288086, 'inference': 8.870601654052734, 'postprocess': 0.3440380096435547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[117, 122, 121],
         [120, 125, 124],
         [116, 121, 120],
         ...,
         [ 22,  23,  21],
         [ 23,  24,  22],
         [ 24,  25,  23]],
 
        [[109, 114, 113],
         [106, 111, 110],
         [107, 112, 111],
         ...,
         [ 22,  23,  21],
         [ 23,  24,  22],
         [ 24,  25,  23]],
 
        [[118, 123, 122],
         [106, 111, 110],
         [107, 112, 111],
         ...,
         [ 22,  23,  21],
         [ 23,  24,  22],
         [ 23,  24,  22]],
 
        ...,
 
        [[125, 141, 154],
         [114, 130, 143],
         [122, 138, 150],
         ...,
         [ 73,  75,  76],
         [ 85,  87,  88],
         [ 95,  97,  98]],
 
        [[136, 152, 165],
         [126, 142, 155],
         [122, 138, 150],
         ...,
         [ 79,  83,  84],
         [ 86,  90,  91],
         [ 94,  98,  99]],
 
        [[142, 158, 171],
         [138, 154, 167],
         [130, 146, 158],
         ...,
         [ 90,  94,  95],
         [ 93,  97,  98],
         [ 99, 103, 104]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-287-_jpg.rf.e2570badb95698d083c54eec726d833c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8224716186523438, 'inference': 8.657693862915039, 'postprocess': 0.66375732421875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.3b5e34d314c7ded93c3733fce130b12a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4004707336425781, 'inference': 8.638858795166016, 'postprocess': 0.3848075866699219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[134, 129, 130],
         [154, 149, 150],
         [148, 143, 144],
         ...,
         [156, 160, 161],
         [153, 157, 158],
         [155, 159, 160]],
 
        [[ 94,  89,  90],
         [123, 118, 119],
         [140, 135, 136],
         ...,
         [159, 163, 164],
         [155, 159, 160],
         [154, 158, 159]],
 
        [[ 96,  91,  92],
         [103,  98,  99],
         [117, 112, 113],
         ...,
         [163, 167, 168],
         [159, 163, 164],
         [157, 161, 162]],
 
        ...,
 
        [[102, 102, 102],
         [ 85,  85,  85],
         [ 94,  94,  94],
         ...,
         [112, 105, 102],
         [113, 106, 103],
         [123, 116, 113]],
 
        [[ 97,  97,  97],
         [ 81,  81,  81],
         [ 85,  85,  85],
         ...,
         [115, 108, 105],
         [106,  99,  96],
         [116, 109, 106]],
 
        [[ 83,  83,  83],
         [ 86,  86,  86],
         [102, 102, 102],
         ...,
         [113, 106, 103],
         [106,  99,  96],
         [120, 113, 110]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.948fb2d38ed70096fb1c644ab1e89973.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9202232360839844, 'inference': 8.57853889465332, 'postprocess': 0.3612041473388672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[38, 38, 38],
         [38, 38, 38],
         [38, 38, 38],
         ...,
         [38, 38, 38],
         [38, 38, 38],
         [38, 38, 38]],
 
        [[38, 38, 38],
         [38, 38, 38],
         [38, 38, 38],
         ...,
         [38, 38, 38],
         [38, 38, 38],
         [38, 38, 38]],
 
        [[38, 38, 38],
         [38, 38, 38],
         [38, 38, 38],
         ...,
         [38, 38, 38],
         [38, 38, 38],
         [38, 38, 38]],
 
        ...,
 
        [[34, 36, 37],
         [39, 41, 42],
         [34, 33, 35],
         ...,
         [35, 39, 34],
         [31, 35, 30],
         [34, 40, 35]],
 
        [[33, 35, 36],
         [38, 40, 41],
         [35, 34, 36],
         ...,
         [40, 44, 39],
         [33, 37, 32],
         [35, 41, 36]],
 
        [[32, 34, 35],
         [38, 40, 41],
         [35, 34, 36],
         ...,
         [41, 45, 40],
         [33, 37, 32],
         [34, 40, 35]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-289-_jpg.rf.b0bf8384c5c25bbefa58c5f1e0893b5d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7838478088378906, 'inference': 9.963750839233398, 'postprocess': 0.4687309265136719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[254, 254, 254],
         [254, 254, 254],
         [254, 254, 254],
         ...,
         [121, 133, 133],
         [109, 121, 121],
         [ 96, 108, 108]],
 
        [[254, 254, 254],
         [254, 254, 254],
         [254, 254, 254],
         ...,
         [126, 138, 138],
         [115, 127, 127],
         [102, 114, 114]],
 
        [[254, 254, 254],
         [254, 254, 254],
         [254, 254, 254],
         ...,
         [129, 141, 141],
         [119, 131, 131],
         [106, 118, 118]],
 
        ...,
 
        [[ 97,  99, 100],
         [ 94,  96,  97],
         [ 90,  92,  93],
         ...,
         [ 97,  99,  99],
         [ 96,  98,  98],
         [ 94,  96,  96]],
 
        [[110, 112, 113],
         [106, 108, 109],
         [100, 102, 103],
         ...,
         [ 95,  97,  97],
         [ 95,  97,  97],
         [ 95,  97,  97]],
 
        [[110, 112, 113],
         [108, 110, 111],
         [106, 108, 109],
         ...,
         [105, 107, 107],
         [ 99, 101, 101],
         [ 96,  98,  98]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.5220d64d0af700ca8a131e4a7015591a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3566017150878906, 'inference': 8.838891983032227, 'postprocess': 0.4696846008300781},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [55, 54, 56],
         [57, 56, 58],
         [59, 58, 60]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [50, 49, 51],
         [52, 51, 53],
         [53, 52, 54]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [52, 51, 53],
         [54, 53, 55],
         [52, 51, 53]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.56803c885d93883808e18e5177fb7bfc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6469955444335938, 'inference': 9.054899215698242, 'postprocess': 0.4448890686035156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-29-_jpg.rf.75b74368c26af7be08174514a5e86a35.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4383792877197266, 'inference': 10.262727737426758, 'postprocess': 0.5259513854980469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.152a3d1b716ce34ef95d003bf13d19e3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6489028930664062, 'inference': 9.167194366455078, 'postprocess': 0.7870197296142578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.521af54aebbf6c4a9777b1a21b2aa1a6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6126632690429688, 'inference': 9.15980339050293, 'postprocess': 0.5724430084228516},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[150, 151, 147],
         [145, 146, 142],
         [140, 141, 137],
         ...,
         [101, 105,  99],
         [113, 117, 111],
         [127, 131, 125]],
 
        [[148, 149, 145],
         [148, 149, 145],
         [149, 150, 146],
         ...,
         [105, 109, 103],
         [118, 122, 116],
         [132, 136, 130]],
 
        [[151, 152, 148],
         [157, 158, 154],
         [161, 162, 158],
         ...,
         [111, 115, 109],
         [125, 129, 123],
         [139, 143, 137]],
 
        ...,
 
        [[136, 146, 140],
         [136, 146, 140],
         [130, 137, 134],
         ...,
         [140, 146, 145],
         [133, 139, 138],
         [131, 137, 136]],
 
        [[128, 138, 132],
         [132, 142, 136],
         [130, 137, 134],
         ...,
         [125, 131, 130],
         [117, 123, 122],
         [115, 121, 120]],
 
        [[123, 133, 127],
         [130, 140, 134],
         [131, 138, 135],
         ...,
         [114, 120, 119],
         [105, 111, 110],
         [103, 109, 108]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-293-_jpg.rf.a9b5278454dd0e6b846f8f5b345c8c0a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4116764068603516, 'inference': 8.556842803955078, 'postprocess': 0.32019615173339844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        ...,
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]],
 
        [[89, 89, 89],
         [89, 89, 89],
         [89, 89, 89],
         ...,
         [89, 89, 89],
         [89, 89, 89],
         [89, 89, 89]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.03cbcc554416b49037040fba4614781a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7044544219970703, 'inference': 8.687496185302734, 'postprocess': 0.3364086151123047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[255, 255, 255],
         [255, 255, 255],
         [255, 255, 255],
         ...,
         [229, 234, 235],
         [251, 255, 255],
         [251, 255, 255]],
 
        [[255, 255, 255],
         [255, 255, 255],
         [255, 255, 255],
         ...,
         [247, 252, 253],
         [242, 246, 247],
         [232, 236, 237]],
 
        [[255, 255, 255],
         [255, 255, 255],
         [255, 255, 255],
         ...,
         [168, 173, 172],
         [116, 118, 118],
         [ 76,  78,  78]],
 
        ...,
 
        [[ 69,  73,  74],
         [ 68,  72,  73],
         [ 62,  66,  67],
         ...,
         [173, 171, 171],
         [219, 217, 217],
         [255, 255, 255]],
 
        [[108, 112, 113],
         [132, 136, 137],
         [139, 143, 144],
         ...,
         [220, 218, 218],
         [255, 255, 255],
         [246, 244, 244]],
 
        [[134, 138, 139],
         [133, 137, 138],
         [106, 110, 111],
         ...,
         [192, 190, 190],
         [255, 255, 255],
         [248, 246, 246]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.1de461b1d76feb49d4f027f59f73b1ff.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9311904907226562, 'inference': 8.594751358032227, 'postprocess': 0.4069805145263672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-294-_jpg.rf.a69a7de19ef308ef7ee254d1016bbc97.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8231868743896484, 'inference': 12.866973876953125, 'postprocess': 0.484466552734375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 50,  64,  63],
         [ 46,  58,  58],
         [ 13,  20,  23],
         ...,
         [ 83,  63,  58],
         [ 82,  61,  59],
         [ 87,  66,  64]],
 
        [[ 67,  81,  80],
         [ 28,  40,  40],
         [ 15,  22,  25],
         ...,
         [ 83,  62,  60],
         [ 83,  62,  60],
         [ 88,  67,  65]],
 
        [[ 82,  96,  95],
         [ 11,  23,  23],
         [ 15,  22,  25],
         ...,
         [ 82,  62,  61],
         [ 84,  64,  63],
         [ 89,  69,  68]],
 
        ...,
 
        [[104, 111, 120],
         [116, 123, 132],
         [152, 161, 171],
         ...,
         [121, 128, 148],
         [114, 119, 140],
         [ 97, 102, 123]],
 
        [[ 99, 104, 113],
         [ 74,  81,  90],
         [ 54,  63,  73],
         ...,
         [118, 124, 147],
         [118, 122, 146],
         [ 89,  93, 117]],
 
        [[115, 120, 129],
         [ 55,  62,  71],
         [ 50,  56,  69],
         ...,
         [122, 130, 153],
         [133, 137, 161],
         [ 97, 101, 125]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.a8c2971b57a19e0180c662e4263aa9b5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4178752899169922, 'inference': 8.293390274047852, 'postprocess': 0.46181678771972656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[32, 26, 31],
         [32, 26, 31],
         [30, 27, 29],
         ...,
         [31, 29, 29],
         [33, 29, 28],
         [32, 28, 27]],
 
        [[32, 26, 31],
         [32, 26, 31],
         [30, 27, 29],
         ...,
         [35, 33, 33],
         [36, 32, 31],
         [35, 31, 30]],
 
        [[32, 26, 31],
         [32, 26, 31],
         [30, 27, 29],
         ...,
         [41, 36, 37],
         [41, 36, 35],
         [41, 36, 35]],
 
        ...,
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [26, 28, 29],
         [26, 28, 29]],
 
        [[26, 29, 27],
         [26, 29, 27],
         [26, 29, 27],
         ...,
         [28, 28, 28],
         [26, 28, 29],
         [26, 28, 29]],
 
        [[26, 29, 27],
         [26, 29, 27],
         [26, 29, 27],
         ...,
         [28, 28, 28],
         [26, 28, 29],
         [26, 28, 29]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.d32464e992476781dea9e98988a24869.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6765594482421875, 'inference': 8.722066879272461, 'postprocess': 0.4093647003173828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-295-_jpg.rf.f66059d5449c804a491dfe941e69a338.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8384456634521484, 'inference': 8.460283279418945, 'postprocess': 0.3566741943359375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 13,  16,  14],
         [ 13,  16,  14],
         [ 10,  15,  13],
         ...,
         [207, 210, 214],
         [204, 207, 211],
         [201, 204, 208]],
 
        [[ 13,  16,  14],
         [ 12,  15,  13],
         [ 10,  15,  13],
         ...,
         [210, 213, 217],
         [206, 209, 213],
         [202, 205, 209]],
 
        [[ 12,  15,  13],
         [ 12,  15,  13],
         [ 10,  15,  13],
         ...,
         [211, 214, 218],
         [213, 216, 220],
         [214, 217, 221]],
 
        ...,
 
        [[ 44,  56,  58],
         [ 37,  49,  51],
         [ 98, 110, 112],
         ...,
         [109, 113, 118],
         [109, 113, 118],
         [105, 109, 114]],
 
        [[ 50,  62,  64],
         [ 55,  67,  69],
         [123, 132, 135],
         ...,
         [107, 111, 116],
         [119, 123, 128],
         [125, 129, 134]],
 
        [[ 62,  74,  76],
         [ 92, 104, 106],
         [142, 151, 154],
         ...,
         [ 98, 102, 107],
         [107, 111, 116],
         [ 95,  99, 104]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.4842e778156eb9f2ba5cf237fe3e4a62.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3594627380371094, 'inference': 11.786222457885742, 'postprocess': 0.8473396301269531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 57,  57,  57],
         [ 57,  57,  57],
         [ 57,  57,  57],
         ...,
         [ 57,  57,  57],
         [ 57,  57,  57],
         [ 57,  57,  57]],
 
        [[ 57,  57,  57],
         [ 57,  57,  57],
         [ 57,  57,  57],
         ...,
         [ 57,  57,  57],
         [ 57,  57,  57],
         [ 57,  57,  57]],
 
        [[ 57,  57,  57],
         [ 57,  57,  57],
         [ 57,  57,  57],
         ...,
         [ 57,  57,  57],
         [ 57,  57,  57],
         [ 57,  57,  57]],
 
        ...,
 
        [[ 59,  56,  58],
         [ 59,  56,  58],
         [ 59,  57,  57],
         ...,
         [146, 153, 156],
         [140, 147, 150],
         [ 75,  82,  85]],
 
        [[ 61,  56,  58],
         [ 61,  56,  58],
         [ 61,  56,  57],
         ...,
         [150, 157, 160],
         [140, 147, 150],
         [ 79,  86,  89]],
 
        [[ 61,  56,  58],
         [ 61,  56,  58],
         [ 61,  56,  57],
         ...,
         [152, 159, 162],
         [141, 148, 151],
         [ 85,  92,  95]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.71c7e5d6a9c5da8e4043d68da5539b8e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7578601837158203, 'inference': 8.54635238647461, 'postprocess': 0.3650188446044922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        ...,
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-296-_jpg.rf.8761505829f0631199e1d3daa72bea42.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3532638549804688, 'inference': 8.223772048950195, 'postprocess': 0.5967617034912109},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.1d4e40786715d3c83bace206f962c042.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6536712646484375, 'inference': 8.417367935180664, 'postprocess': 0.5955696105957031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[255, 255, 254],
         [255, 255, 254],
         [250, 252, 252],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[255, 255, 254],
         [255, 255, 254],
         [250, 252, 252],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        [[255, 255, 254],
         [255, 255, 254],
         [250, 252, 252],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        ...,
 
        [[255, 255, 255],
         [255, 255, 255],
         [253, 253, 253],
         ...,
         [255, 255, 255],
         [252, 254, 254],
         [253, 255, 255]],
 
        [[254, 254, 254],
         [255, 255, 255],
         [253, 253, 253],
         ...,
         [255, 255, 255],
         [253, 255, 255],
         [253, 255, 255]],
 
        [[253, 253, 253],
         [255, 255, 255],
         [252, 252, 252],
         ...,
         [255, 255, 255],
         [253, 255, 255],
         [253, 255, 255]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.72ed26dca533a7e479c08103a5569c8f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7540454864501953, 'inference': 10.249853134155273, 'postprocess': 0.5228519439697266},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-297-_jpg.rf.84f5afae7a869cf8e987823d48ac52ea.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.608133316040039, 'inference': 9.59920883178711, 'postprocess': 0.3750324249267578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.58b2ce2cbcbc68eb15a507b2cf8643e2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.3965835571289062, 'inference': 8.686065673828125, 'postprocess': 0.3693103790283203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 40,  68,  62],
         [ 44,  72,  66],
         [ 52,  78,  72],
         ...,
         [209, 216, 213],
         [212, 218, 213],
         [213, 219, 214]],
 
        [[ 42,  70,  64],
         [ 44,  72,  66],
         [ 50,  76,  70],
         ...,
         [210, 217, 214],
         [212, 217, 215],
         [212, 218, 213]],
 
        [[ 45,  73,  67],
         [ 45,  73,  67],
         [ 49,  75,  69],
         ...,
         [209, 216, 213],
         [211, 216, 214],
         [211, 216, 214]],
 
        ...,
 
        [[167, 173, 172],
         [164, 170, 169],
         [160, 166, 165],
         ...,
         [139, 139, 139],
         [138, 138, 138],
         [140, 140, 140]],
 
        [[167, 173, 172],
         [163, 169, 168],
         [159, 165, 164],
         ...,
         [134, 134, 134],
         [132, 132, 132],
         [132, 132, 132]],
 
        [[168, 174, 173],
         [164, 170, 169],
         [160, 166, 165],
         ...,
         [133, 133, 133],
         [129, 129, 129],
         [128, 128, 128]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.cd5aa1c41d3e62814135dde19300f171.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7278194427490234, 'inference': 8.602380752563477, 'postprocess': 0.42724609375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 0],
         [2, 0, 0],
         [2, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-298-_jpg.rf.eb89bc0d42a73c41261305e01a9138f8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0101070404052734, 'inference': 8.840322494506836, 'postprocess': 0.7939338684082031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.b9479d0a39352215db193b6877e389ff.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.413583755493164, 'inference': 8.666753768920898, 'postprocess': 0.4627704620361328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.d1996e7e3608d23e5111b7e3f95a5353.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.649618148803711, 'inference': 8.459806442260742, 'postprocess': 0.4382133483886719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[124, 129, 132],
         [116, 121, 124],
         [100, 105, 108],
         ...,
         [143, 148, 149],
         [137, 142, 143],
         [110, 115, 116]],
 
        [[118, 123, 126],
         [114, 119, 122],
         [106, 111, 114],
         ...,
         [131, 136, 137],
         [138, 143, 144],
         [126, 131, 132]],
 
        [[139, 144, 147],
         [124, 129, 132],
         [106, 111, 114],
         ...,
         [116, 121, 122],
         [130, 135, 136],
         [129, 134, 135]],
 
        ...,
 
        [[ 99, 111, 115],
         [124, 136, 140],
         [103, 115, 119],
         ...,
         [164, 170, 181],
         [125, 131, 142],
         [ 94, 100, 111]],
 
        [[171, 183, 187],
         [210, 222, 226],
         [189, 201, 205],
         ...,
         [165, 171, 182],
         [145, 151, 162],
         [124, 130, 141]],
 
        [[204, 216, 220],
         [213, 225, 229],
         [205, 217, 221],
         ...,
         [166, 172, 183],
         [169, 175, 186],
         [156, 162, 173]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-299-_jpg.rf.ffefe6a973c89146c61be0770eed07c3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.787424087524414, 'inference': 8.431434631347656, 'postprocess': 0.3802776336669922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 64, 129, 143],
         [ 64, 129, 143],
         [ 65, 130, 144],
         ...,
         [137, 135, 135],
         [137, 135, 135],
         [137, 135, 135]],
 
        [[ 64, 129, 143],
         [ 64, 129, 143],
         [ 65, 130, 144],
         ...,
         [138, 136, 136],
         [138, 136, 136],
         [138, 136, 136]],
 
        [[ 66, 129, 143],
         [ 66, 129, 143],
         [ 67, 130, 144],
         ...,
         [140, 138, 138],
         [140, 138, 138],
         [140, 138, 138]],
 
        ...,
 
        [[110, 108, 108],
         [ 98,  96,  96],
         [100,  98,  98],
         ...,
         [ 81,  79,  79],
         [ 75,  73,  73],
         [ 66,  64,  64]],
 
        [[ 97,  95,  95],
         [ 88,  86,  86],
         [ 95,  93,  93],
         ...,
         [ 91,  89,  89],
         [ 88,  86,  86],
         [ 78,  76,  76]],
 
        [[ 77,  75,  75],
         [ 75,  73,  73],
         [ 85,  83,  83],
         ...,
         [ 98,  96,  96],
         [ 97,  95,  95],
         [ 86,  84,  84]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.17e79b0608bc082d9380d713fb69f5ef.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3561248779296875, 'inference': 8.309602737426758, 'postprocess': 0.3299713134765625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        ...,
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.1f39da1d67e7044320a0a602d9819741.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0318031311035156, 'inference': 9.115934371948242, 'postprocess': 0.3724098205566406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        ...,
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-3-_jpg.rf.9fea650aedf412fa2559d06c40de20b9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3895034790039062, 'inference': 8.45479965209961, 'postprocess': 0.42748451232910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,  20,  25],
         [  2,  24,  29],
         [  0,   3,   9],
         ...,
         [254, 253, 249],
         [254, 253, 249],
         [254, 253, 249]],
 
        [[  0,  18,  23],
         [  0,  22,  27],
         [  0,  20,  26],
         ...,
         [254, 253, 249],
         [254, 253, 249],
         [254, 253, 249]],
 
        [[ 16,  38,  44],
         [  4,  26,  32],
         [  7,  26,  33],
         ...,
         [254, 253, 249],
         [254, 253, 249],
         [254, 253, 249]],
 
        ...,
 
        [[ 35,  42,  45],
         [ 34,  41,  44],
         [ 28,  36,  36],
         ...,
         [ 73, 104, 119],
         [ 96, 124, 141],
         [111, 139, 156]],
 
        [[ 51,  56,  59],
         [ 36,  41,  44],
         [ 25,  30,  33],
         ...,
         [  5,  36,  51],
         [ 30,  58,  75],
         [134, 162, 179]],
 
        [[ 69,  74,  77],
         [ 47,  52,  55],
         [ 33,  38,  41],
         ...,
         [ 11,  42,  57],
         [  3,  31,  48],
         [113, 141, 158]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.370eca9f98e828703d153a162dba5233.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7533302307128906, 'inference': 8.38327407836914, 'postprocess': 0.3693103790283203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.50f47f18cb6f3fb3650fe72d391d9187.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6963481903076172, 'inference': 8.736133575439453, 'postprocess': 0.46372413635253906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-30-_jpg.rf.881c629f5ecaecfe726c74a522b8decb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5592575073242188, 'inference': 13.164997100830078, 'postprocess': 0.5958080291748047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[186, 169, 180],
         [187, 170, 181],
         [189, 172, 183],
         ...,
         [189, 182, 162],
         [209, 202, 182],
         [189, 182, 162]],
 
        [[190, 173, 184],
         [189, 172, 183],
         [187, 170, 181],
         ...,
         [179, 172, 152],
         [186, 179, 159],
         [212, 205, 185]],
 
        [[191, 172, 181],
         [189, 170, 179],
         [187, 168, 177],
         ...,
         [179, 172, 153],
         [183, 176, 157],
         [225, 218, 199]],
 
        ...,
 
        [[180, 168, 150],
         [189, 177, 159],
         [175, 163, 145],
         ...,
         [127, 115, 105],
         [141, 131, 121],
         [224, 214, 204]],
 
        [[174, 162, 144],
         [178, 166, 148],
         [161, 149, 131],
         ...,
         [140, 130, 113],
         [145, 137, 120],
         [200, 192, 175]],
 
        [[179, 167, 149],
         [174, 162, 144],
         [154, 142, 124],
         ...,
         [158, 149, 129],
         [157, 150, 131],
         [159, 152, 133]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.3600a16f8f27cc0334db7f049f787eb1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8248558044433594, 'inference': 9.623050689697266, 'postprocess': 0.4093647003173828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        ...,
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]],
 
        [[8, 8, 8],
         [8, 8, 8],
         [8, 8, 8],
         ...,
         [8, 8, 8],
         [8, 8, 8],
         [8, 8, 8]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.4ef818f9e780452ddfb899a2a2b6b03a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5366077423095703, 'inference': 9.05156135559082, 'postprocess': 0.36263465881347656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-300-_jpg.rf.84ff02582ef46f86d24bc848af4be07b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6684532165527344, 'inference': 8.86678695678711, 'postprocess': 0.5123615264892578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.2b21a6093d6fa16efa900074dc3542cd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8739700317382812, 'inference': 9.163141250610352, 'postprocess': 0.431060791015625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[166, 164, 156],
         [171, 169, 161],
         [175, 173, 165],
         ...,
         [207, 193, 199],
         [208, 194, 200],
         [209, 195, 201]],
 
        [[165, 163, 155],
         [170, 168, 160],
         [174, 172, 164],
         ...,
         [207, 193, 199],
         [208, 194, 200],
         [209, 195, 201]],
 
        [[164, 162, 154],
         [169, 167, 159],
         [172, 170, 162],
         ...,
         [207, 193, 199],
         [208, 194, 200],
         [209, 195, 201]],
 
        ...,
 
        [[112, 109, 105],
         [108, 105, 101],
         [103, 100,  96],
         ...,
         [ 51,  39,  45],
         [ 43,  31,  37],
         [ 45,  33,  39]],
 
        [[120, 117, 113],
         [115, 112, 108],
         [108, 105, 101],
         ...,
         [ 63,  51,  57],
         [ 60,  48,  54],
         [ 66,  54,  60]],
 
        [[124, 121, 117],
         [118, 115, 111],
         [110, 107, 103],
         ...,
         [ 75,  63,  69],
         [ 74,  62,  68],
         [ 84,  72,  78]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.821c1245c0e331fa2bf691e53b6d5d99.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4851093292236328, 'inference': 8.700132369995117, 'postprocess': 0.38886070251464844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        ...,
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-301-_jpg.rf.b5aea8cb48e0a04950551fd41e277ea6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.819610595703125, 'inference': 8.655548095703125, 'postprocess': 0.6003379821777344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        ...,
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]],
 
        [[21, 21, 21],
         [21, 21, 21],
         [21, 21, 21],
         ...,
         [21, 21, 21],
         [21, 21, 21],
         [21, 21, 21]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.37977cf11bbe714965571c19d72ffee0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4195442199707031, 'inference': 12.15219497680664, 'postprocess': 0.6511211395263672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.b78c512c8993fd44bdb300776d9dc3f4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9161701202392578, 'inference': 10.748147964477539, 'postprocess': 0.3483295440673828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[162, 171, 181],
         [163, 172, 182],
         [161, 170, 180],
         ...,
         [201, 206, 205],
         [201, 206, 205],
         [201, 206, 205]],
 
        [[163, 172, 182],
         [164, 173, 183],
         [162, 171, 181],
         ...,
         [201, 206, 205],
         [201, 206, 205],
         [201, 206, 205]],
 
        [[163, 172, 182],
         [165, 174, 184],
         [162, 171, 181],
         ...,
         [201, 206, 205],
         [201, 206, 205],
         [201, 206, 205]],
 
        ...,
 
        [[144, 142, 142],
         [141, 139, 139],
         [148, 146, 146],
         ...,
         [177, 176, 178],
         [183, 182, 184],
         [179, 178, 180]],
 
        [[144, 142, 142],
         [141, 139, 139],
         [149, 147, 147],
         ...,
         [178, 177, 179],
         [184, 183, 185],
         [179, 178, 180]],
 
        [[143, 141, 141],
         [141, 139, 139],
         [149, 147, 147],
         ...,
         [179, 178, 180],
         [184, 183, 185],
         [179, 178, 180]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-302-_jpg.rf.d633fdb04731410dc8d1d1da15a1363a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4121532440185547, 'inference': 8.708477020263672, 'postprocess': 0.41031837463378906},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  9,   6,   8],
         [  4,   1,   3],
         [  1,   0,   2],
         ...,
         [  1,   1,   1],
         [  1,   1,   1],
         [  2,   2,   2]],
 
        [[ 12,   9,  11],
         [  7,   4,   6],
         [  4,   3,   5],
         ...,
         [  1,   1,   1],
         [  1,   1,   1],
         [  2,   2,   2]],
 
        [[ 15,  12,  14],
         [ 10,   7,   9],
         [  6,   5,   7],
         ...,
         [  1,   1,   1],
         [  1,   1,   1],
         [  2,   2,   2]],
 
        ...,
 
        [[108, 103, 100],
         [113, 108, 105],
         [120, 115, 112],
         ...,
         [ 98, 138, 173],
         [100, 140, 175],
         [102, 142, 177]],
 
        [[112, 107, 104],
         [109, 104, 101],
         [116, 111, 108],
         ...,
         [ 97, 137, 172],
         [100, 140, 175],
         [103, 143, 178]],
 
        [[114, 109, 106],
         [105, 100,  97],
         [112, 107, 104],
         ...,
         [ 96, 136, 171],
         [100, 140, 175],
         [104, 144, 179]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.0940348a848c8c97f3fff9383cb3cdc8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7304420471191406, 'inference': 8.921623229980469, 'postprocess': 0.37407875061035156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 72,  74,  74],
         [ 72,  74,  74],
         [ 72,  74,  74],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]],
 
        [[ 72,  74,  74],
         [ 72,  74,  74],
         [ 72,  74,  74],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]],
 
        [[ 74,  73,  75],
         [ 74,  73,  75],
         [ 74,  73,  75],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]],
 
        ...,
 
        [[ 77,  72,  73],
         [103,  98,  99],
         [149, 144, 145],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]],
 
        [[ 84,  79,  80],
         [105, 100, 101],
         [147, 142, 143],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]],
 
        [[ 76,  71,  72],
         [ 91,  86,  87],
         [123, 118, 119],
         ...,
         [ 74,  74,  74],
         [ 74,  74,  74],
         [ 74,  74,  74]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.1174887817ec51f80c793c0f75927824.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8472671508789062, 'inference': 8.815288543701172, 'postprocess': 0.44798851013183594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        ...,
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]],
 
        [[4, 4, 4],
         [4, 4, 4],
         [4, 4, 4],
         ...,
         [4, 4, 4],
         [4, 4, 4],
         [4, 4, 4]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-31-_jpg.rf.f773855cfccc522535461bb0d18add8a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3527870178222656, 'inference': 8.45193862915039, 'postprocess': 0.331878662109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[105, 117, 117],
         [105, 117, 117],
         [104, 116, 116],
         ...,
         [ 88,  86,  85],
         [ 97,  95,  94],
         [ 93,  91,  90]],
 
        [[107, 119, 119],
         [107, 119, 119],
         [107, 119, 119],
         ...,
         [ 88,  86,  85],
         [ 98,  96,  95],
         [ 93,  91,  90]],
 
        [[105, 117, 117],
         [106, 118, 118],
         [108, 120, 120],
         ...,
         [ 85,  83,  82],
         [ 95,  93,  92],
         [ 90,  88,  87]],
 
        ...,
 
        [[ 61,  55,  56],
         [ 61,  55,  56],
         [ 46,  41,  42],
         ...,
         [ 43,  44,  42],
         [ 41,  42,  40],
         [ 46,  47,  45]],
 
        [[ 61,  55,  56],
         [ 62,  56,  57],
         [ 47,  42,  43],
         ...,
         [ 45,  46,  44],
         [ 42,  43,  41],
         [ 47,  48,  46]],
 
        [[ 57,  51,  52],
         [ 59,  53,  54],
         [ 46,  41,  42],
         ...,
         [ 46,  47,  45],
         [ 44,  45,  43],
         [ 48,  49,  47]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.2940a75b7dd32070029f18fa382ebdc5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.596616744995117, 'inference': 13.052940368652344, 'postprocess': 0.6272792816162109},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        ...,
 
        [[11, 11, 11],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[11, 11, 11],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[11, 11, 11],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.d35f113f002fcda07300a87c4953d158.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.085447311401367, 'inference': 9.57179069519043, 'postprocess': 0.5633831024169922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[118, 118, 118],
         [118, 118, 118],
         [118, 118, 118],
         ...,
         [118, 118, 118],
         [118, 118, 118],
         [118, 118, 118]],
 
        [[118, 118, 118],
         [118, 118, 118],
         [118, 118, 118],
         ...,
         [118, 118, 118],
         [118, 118, 118],
         [118, 118, 118]],
 
        [[118, 118, 118],
         [118, 118, 118],
         [118, 118, 118],
         ...,
         [118, 118, 118],
         [118, 118, 118],
         [118, 118, 118]],
 
        ...,
 
        [[118, 118, 118],
         [118, 118, 118],
         [118, 118, 118],
         ...,
         [118, 118, 118],
         [118, 118, 118],
         [118, 118, 118]],
 
        [[118, 118, 118],
         [118, 118, 118],
         [118, 118, 118],
         ...,
         [118, 118, 118],
         [118, 118, 118],
         [118, 118, 118]],
 
        [[118, 118, 118],
         [118, 118, 118],
         [118, 118, 118],
         ...,
         [118, 118, 118],
         [118, 118, 118],
         [118, 118, 118]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-318-_jpg.rf.fb982b0515cfdf43b2ced2b2b087b90d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9543170928955078, 'inference': 10.121345520019531, 'postprocess': 0.3826618194580078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [77, 77, 77],
         [78, 78, 78],
         [81, 81, 81]],
 
        [[77, 77, 77],
         [77, 77, 77],
         [77, 77, 77],
         ...,
         [80, 80, 80],
         [78, 78, 78],
         [78, 78, 78]],
 
        [[77, 77, 77],
         [76, 76, 76],
         [76, 76, 76],
         ...,
         [82, 84, 85],
         [81, 83, 84],
         [79, 81, 82]],
 
        ...,
 
        [[76, 76, 76],
         [76, 76, 76],
         [76, 76, 76],
         ...,
         [76, 76, 76],
         [76, 76, 76],
         [76, 76, 76]],
 
        [[75, 75, 75],
         [75, 75, 75],
         [75, 75, 75],
         ...,
         [76, 76, 76],
         [76, 76, 76],
         [76, 76, 76]],
 
        [[76, 76, 76],
         [76, 76, 76],
         [76, 76, 76],
         ...,
         [76, 76, 76],
         [76, 76, 76],
         [76, 76, 76]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.17b7362dd7e828ab11f01d0a23db3a50.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0494461059570312, 'inference': 9.534120559692383, 'postprocess': 0.7336139678955078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.4aea4d06478697bd7b70b72cd80d1546.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4379024505615234, 'inference': 9.016275405883789, 'postprocess': 0.45680999755859375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 2,  4,  4],
         [ 5,  7,  7],
         [ 7,  9,  9],
         ...,
         [50, 58, 65],
         [49, 57, 64],
         [50, 58, 65]],
 
        [[ 5,  7,  7],
         [ 8, 10, 10],
         [10, 12, 12],
         ...,
         [49, 57, 64],
         [47, 55, 62],
         [45, 53, 60]],
 
        [[ 0,  1,  1],
         [ 3,  5,  5],
         [ 8, 10, 10],
         ...,
         [49, 57, 64],
         [45, 53, 60],
         [42, 50, 57]],
 
        ...,
 
        [[21, 22, 26],
         [28, 29, 33],
         [33, 34, 38],
         ...,
         [30, 29, 31],
         [27, 26, 28],
         [27, 26, 28]],
 
        [[22, 23, 27],
         [28, 29, 33],
         [32, 33, 37],
         ...,
         [30, 29, 31],
         [27, 26, 28],
         [27, 26, 28]],
 
        [[23, 24, 28],
         [29, 30, 34],
         [32, 33, 37],
         ...,
         [30, 29, 31],
         [27, 26, 28],
         [27, 26, 28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-32-_jpg.rf.e9cd27fe43663beff58ee6e1f8f7f3d2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8932819366455078, 'inference': 8.617401123046875, 'postprocess': 0.5147457122802734},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        ...,
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.3cc5232b879d313c05dc30ad7b066f99.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3637542724609375, 'inference': 8.494853973388672, 'postprocess': 0.5848407745361328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.40b75b0e55a33c21bc33826831384287.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8243789672851562, 'inference': 8.64267349243164, 'postprocess': 0.3943443298339844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[254, 254, 254],
         [254, 254, 254],
         [254, 254, 254],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [254, 254, 254]],
 
        [[254, 254, 254],
         [254, 254, 254],
         [254, 254, 254],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [254, 254, 254]],
 
        [[254, 254, 254],
         [254, 254, 254],
         [254, 254, 254],
         ...,
         [255, 255, 255],
         [255, 255, 255],
         [255, 255, 255]],
 
        ...,
 
        [[112, 116, 121],
         [112, 116, 121],
         [112, 116, 121],
         ...,
         [111, 115, 120],
         [117, 121, 126],
         [126, 130, 135]],
 
        [[111, 115, 120],
         [111, 115, 120],
         [111, 115, 120],
         ...,
         [112, 116, 121],
         [119, 123, 128],
         [129, 133, 138]],
 
        [[110, 114, 119],
         [110, 114, 119],
         [110, 114, 119],
         ...,
         [113, 117, 122],
         [122, 126, 131],
         [132, 136, 141]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-34-_jpg.rf.add0f9e0bd6d5cd8a32bde8eac8b1c9f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4564990997314453, 'inference': 9.056806564331055, 'postprocess': 0.6623268127441406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[63, 67, 72],
         [59, 63, 68],
         [55, 59, 64],
         ...,
         [26, 26, 32],
         [27, 27, 33],
         [27, 27, 33]],
 
        [[60, 64, 69],
         [56, 60, 65],
         [53, 57, 62],
         ...,
         [30, 30, 36],
         [30, 30, 36],
         [30, 30, 36]],
 
        [[60, 64, 69],
         [58, 62, 67],
         [56, 60, 65],
         ...,
         [35, 35, 41],
         [35, 35, 41],
         [36, 36, 42]],
 
        ...,
 
        [[88, 89, 93],
         [90, 91, 95],
         [89, 90, 94],
         ...,
         [79, 77, 77],
         [77, 72, 73],
         [73, 68, 69]],
 
        [[85, 86, 90],
         [87, 88, 92],
         [87, 88, 92],
         ...,
         [78, 76, 76],
         [74, 69, 70],
         [69, 64, 65]],
 
        [[82, 83, 87],
         [85, 86, 90],
         [85, 86, 90],
         ...,
         [77, 75, 75],
         [72, 67, 68],
         [67, 62, 63]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.3a6cb54980b1b14196158b140c277034.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8846988677978516, 'inference': 8.675098419189453, 'postprocess': 0.37360191345214844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 3],
         [0, 0, 4],
         [0, 0, 4]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 3],
         [0, 0, 4],
         [0, 0, 4]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 3],
         [0, 0, 4],
         [0, 0, 4]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.d7c110298e8deb6c82e6a13278880bc1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7244815826416016, 'inference': 8.64720344543457, 'postprocess': 0.5977153778076172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-35-_jpg.rf.e87935b40ac72eeef1e183a1b784e3e9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3697147369384766, 'inference': 8.752584457397461, 'postprocess': 0.3428459167480469},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[216, 218, 219],
         [214, 216, 217],
         [214, 216, 217],
         ...,
         [ 80,  86,  91],
         [ 70,  76,  81],
         [ 65,  71,  76]],
 
        [[216, 218, 219],
         [215, 217, 218],
         [215, 217, 218],
         ...,
         [ 73,  79,  84],
         [ 69,  75,  80],
         [ 58,  64,  69]],
 
        [[216, 218, 219],
         [217, 219, 220],
         [218, 220, 221],
         ...,
         [ 68,  74,  79],
         [ 72,  78,  83],
         [ 53,  59,  64]],
 
        ...,
 
        [[ 73,  77,  82],
         [ 75,  79,  84],
         [ 74,  78,  83],
         ...,
         [ 80,  83,  88],
         [ 88,  91,  96],
         [ 97, 100, 105]],
 
        [[ 69,  73,  78],
         [ 76,  80,  85],
         [ 78,  82,  87],
         ...,
         [ 83,  86,  91],
         [107, 110, 115],
         [126, 129, 134]],
 
        [[ 60,  64,  69],
         [ 73,  77,  82],
         [ 79,  83,  88],
         ...,
         [118, 121, 126],
         [114, 117, 122],
         [ 99, 102, 107]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.141623e970a3b93aa37e180a3efb32b8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.4776458740234375, 'inference': 9.26065444946289, 'postprocess': 0.4546642303466797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 27, 31],
         [28, 27, 31],
         [28, 27, 31]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 27, 31],
         [28, 27, 31],
         [28, 27, 31]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [30, 27, 29],
         [30, 27, 29],
         [30, 27, 29]],
 
        ...,
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [30, 28, 28],
         [32, 27, 28],
         [32, 27, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [30, 28, 28],
         [32, 27, 28],
         [32, 27, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [30, 28, 28],
         [32, 27, 28],
         [32, 27, 28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.dbb4e5f29da50d7f69800bd02df7cd28.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3530254364013672, 'inference': 8.846521377563477, 'postprocess': 0.5719661712646484},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 1, 0],
         [0, 3, 1],
         [0, 4, 3],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[0, 3, 1],
         [3, 6, 4],
         [3, 5, 5],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 3, 1],
         [3, 4, 2],
         [1, 1, 1],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        ...,
 
        [[2, 4, 5],
         [4, 6, 7],
         [6, 8, 9],
         ...,
         [2, 3, 1],
         [2, 3, 0],
         [2, 3, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 1, 1],
         ...,
         [2, 3, 1],
         [2, 3, 0],
         [2, 3, 0]],
 
        [[1, 3, 3],
         [0, 2, 2],
         [0, 2, 2],
         ...,
         [2, 3, 1],
         [2, 3, 0],
         [2, 3, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-37-_jpg.rf.fef279db67c02cffe5e03d2f062e76c7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7991065979003906, 'inference': 8.594751358032227, 'postprocess': 0.5278587341308594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.da02919be110cad52f54add553bf8ff6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8191337585449219, 'inference': 12.314796447753906, 'postprocess': 0.7073879241943359},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[142, 139, 135],
         [143, 140, 136],
         [144, 139, 138],
         ...,
         [182, 179, 175],
         [185, 182, 177],
         [170, 167, 162]],
 
        [[145, 141, 140],
         [141, 137, 136],
         [136, 130, 131],
         ...,
         [189, 186, 182],
         [177, 174, 169],
         [175, 172, 167]],
 
        [[149, 144, 146],
         [144, 139, 141],
         [139, 132, 135],
         ...,
         [191, 188, 184],
         [170, 167, 162],
         [179, 176, 171]],
 
        ...,
 
        [[ 98,  89,  86],
         [ 84,  75,  72],
         [ 81,  72,  69],
         ...,
         [150, 150, 150],
         [148, 149, 147],
         [148, 149, 147]],
 
        [[ 94,  85,  82],
         [ 89,  80,  77],
         [ 93,  84,  81],
         ...,
         [150, 151, 149],
         [148, 149, 147],
         [148, 149, 147]],
 
        [[ 88,  79,  76],
         [104,  95,  92],
         [124, 115, 112],
         ...,
         [147, 148, 146],
         [153, 154, 152],
         [156, 157, 155]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.dba8be87e1cad6fbbc6f68728f95a85d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5463829040527344, 'inference': 8.92186164855957, 'postprocess': 0.4241466522216797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-38-_jpg.rf.f986b908d11e3ccfab5acb989bc9aa7b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6732215881347656, 'inference': 9.041786193847656, 'postprocess': 0.3745555877685547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.916c6c1f6b88b55f48b08e48481fe26f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4984607696533203, 'inference': 8.60142707824707, 'postprocess': 0.4985332489013672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[206, 209, 207],
         [206, 209, 207],
         [206, 209, 207],
         ...,
         [218, 220, 220],
         [218, 220, 220],
         [218, 220, 220]],
 
        [[206, 209, 207],
         [206, 209, 207],
         [206, 209, 207],
         ...,
         [218, 220, 220],
         [218, 220, 220],
         [218, 220, 220]],
 
        [[206, 209, 207],
         [206, 209, 207],
         [206, 209, 207],
         ...,
         [218, 220, 220],
         [218, 220, 220],
         [218, 220, 220]],
 
        ...,
 
        [[ 50,  53,  51],
         [ 59,  62,  60],
         [ 63,  66,  64],
         ...,
         [ 42,  44,  45],
         [ 44,  45,  49],
         [ 45,  46,  50]],
 
        [[ 57,  60,  58],
         [ 65,  68,  66],
         [ 68,  71,  69],
         ...,
         [ 41,  43,  44],
         [ 42,  43,  47],
         [ 44,  45,  49]],
 
        [[ 67,  70,  68],
         [ 75,  78,  76],
         [ 75,  78,  76],
         ...,
         [ 44,  46,  47],
         [ 46,  47,  51],
         [ 48,  49,  53]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.99d4097fac96d5f035d066f05bd3dcac.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.027750015258789, 'inference': 14.48965072631836, 'postprocess': 0.83160400390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        ...,
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]],
 
        [[34, 34, 34],
         [34, 34, 34],
         [34, 34, 34],
         ...,
         [34, 34, 34],
         [34, 34, 34],
         [34, 34, 34]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-39-_jpg.rf.c50896cfc9b1facb5cd4234bb9be07b6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4503002166748047, 'inference': 9.636402130126953, 'postprocess': 0.7460117340087891},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 6],
         [0, 0, 6],
         [0, 0, 7],
         ...,
         [0, 3, 0],
         [7, 2, 3],
         [9, 0, 1]],
 
        [[0, 1, 5],
         [0, 1, 5],
         [0, 1, 6],
         ...,
         [0, 3, 0],
         [7, 2, 3],
         [7, 0, 1]],
 
        [[0, 2, 2],
         [0, 0, 0],
         [4, 0, 0],
         ...,
         [0, 4, 0],
         [6, 4, 4],
         [5, 0, 1]],
 
        ...,
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [2, 0, 0],
         [2, 0, 1],
         [2, 0, 1]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 1],
         [0, 0, 1]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 1, 0],
         [0, 0, 1],
         [0, 0, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.4db592c400a3bacb104e601c50c1fcd0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6944408416748047, 'inference': 8.639097213745117, 'postprocess': 0.3540515899658203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 52,  83,  56],
         [ 38,  69,  42],
         [ 24,  54,  29],
         ...,
         [ 26,  59,  32],
         [ 16,  46,  21],
         [ 13,  43,  18]],
 
        [[ 45,  76,  49],
         [ 29,  60,  33],
         [ 17,  47,  22],
         ...,
         [ 24,  57,  30],
         [ 16,  46,  21],
         [ 14,  44,  19]],
 
        [[ 35,  66,  39],
         [ 17,  48,  21],
         [  9,  39,  14],
         ...,
         [ 21,  56,  29],
         [ 17,  50,  23],
         [ 14,  47,  20]],
 
        ...,
 
        [[ 98, 117, 120],
         [101, 120, 123],
         [ 95, 114, 117],
         ...,
         [  7,  19,  21],
         [  2,  14,  20],
         [ 24,  36,  42]],
 
        [[ 95, 114, 117],
         [ 96, 115, 118],
         [ 90, 109, 112],
         ...,
         [ 18,  30,  32],
         [ 27,  39,  45],
         [ 29,  41,  47]],
 
        [[ 96, 115, 118],
         [ 96, 115, 118],
         [ 90, 109, 112],
         ...,
         [ 18,  30,  32],
         [ 33,  45,  51],
         [ 29,  41,  47]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.d3357165b543f6d3e0f729dfa3373855.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7383098602294922, 'inference': 14.265298843383789, 'postprocess': 0.9560585021972656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        ...,
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-4-_jpg.rf.f52085b2d1744eeb56ed5a4b8ba0fb0f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3418197631835938, 'inference': 8.478164672851562, 'postprocess': 0.3762245178222656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[156, 165, 168],
         [145, 157, 159],
         [137, 147, 154],
         ...,
         [103,  92,  88],
         [116, 105, 101],
         [ 88,  77,  73]],
 
        [[150, 159, 163],
         [143, 154, 158],
         [134, 146, 152],
         ...,
         [ 66,  55,  51],
         [ 74,  63,  59],
         [ 90,  79,  75]],
 
        [[137, 147, 154],
         [144, 155, 163],
         [151, 164, 172],
         ...,
         [ 76,  65,  61],
         [ 59,  48,  44],
         [ 93,  82,  78]],
 
        ...,
 
        [[ 68,  65,  57],
         [116, 113, 105],
         [ 40,  36,  31],
         ...,
         [177, 184, 187],
         [139, 145, 150],
         [142, 148, 153]],
 
        [[ 99,  95,  90],
         [132, 128, 123],
         [ 42,  38,  33],
         ...,
         [153, 160, 163],
         [124, 130, 135],
         [147, 153, 158]],
 
        [[ 61,  57,  52],
         [ 92,  88,  83],
         [ 71,  67,  62],
         ...,
         [160, 167, 170],
         [167, 173, 178],
         [134, 140, 145]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.0b69a3e42d0f31491655adaa801c3160.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.1021366119384766, 'inference': 8.92782211303711, 'postprocess': 0.4093647003173828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        ...,
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.7047af1ffe9d3d01ef41591660a7bd37.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.428842544555664, 'inference': 8.407354354858398, 'postprocess': 0.8971691131591797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        ...,
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-40-_jpg.rf.c8d57f2324c265fbe81623987f86e3d8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6562938690185547, 'inference': 8.447885513305664, 'postprocess': 0.3638267517089844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.4d2787d8d27bef19c2759899a13581ad.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7285346984863281, 'inference': 8.777618408203125, 'postprocess': 1.1060237884521484},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        ...,
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.5e808c2edeb8c3db416e41b5cf956575.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.573324203491211, 'inference': 9.090185165405273, 'postprocess': 0.7543563842773438},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[133, 142, 151],
         [151, 160, 169],
         [167, 176, 185],
         ...,
         [ 40,  39,  13],
         [ 40,  39,  13],
         [ 40,  39,  13]],
 
        [[147, 156, 165],
         [160, 169, 178],
         [171, 180, 189],
         ...,
         [ 40,  39,  13],
         [ 40,  39,  13],
         [ 40,  39,  13]],
 
        [[149, 158, 167],
         [158, 167, 176],
         [164, 173, 182],
         ...,
         [ 40,  39,  13],
         [ 40,  39,  13],
         [ 40,  39,  13]],
 
        ...,
 
        [[160, 162, 162],
         [157, 159, 159],
         [141, 143, 143],
         ...,
         [123, 132, 145],
         [133, 142, 155],
         [146, 155, 168]],
 
        [[155, 157, 157],
         [151, 153, 153],
         [137, 139, 139],
         ...,
         [129, 138, 151],
         [141, 150, 163],
         [154, 163, 176]],
 
        [[168, 170, 170],
         [155, 157, 157],
         [128, 130, 130],
         ...,
         [132, 141, 154],
         [144, 153, 166],
         [155, 164, 177]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-41-_jpg.rf.74ff92157ffacab71cc6f120cb5663a6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7576217651367188, 'inference': 9.25302505493164, 'postprocess': 0.39386749267578125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[84, 84, 84],
         [84, 84, 84],
         [84, 84, 84],
         ...,
         [84, 84, 84],
         [84, 84, 84],
         [84, 84, 84]],
 
        [[84, 84, 84],
         [84, 84, 84],
         [84, 84, 84],
         ...,
         [84, 84, 84],
         [84, 84, 84],
         [84, 84, 84]],
 
        [[84, 84, 84],
         [84, 84, 84],
         [84, 84, 84],
         ...,
         [84, 84, 84],
         [84, 84, 84],
         [84, 84, 84]],
 
        ...,
 
        [[84, 84, 84],
         [84, 84, 84],
         [84, 84, 84],
         ...,
         [84, 84, 84],
         [84, 84, 84],
         [84, 84, 84]],
 
        [[84, 84, 84],
         [84, 84, 84],
         [84, 84, 84],
         ...,
         [84, 84, 84],
         [84, 84, 84],
         [84, 84, 84]],
 
        [[84, 84, 84],
         [84, 84, 84],
         [84, 84, 84],
         ...,
         [84, 84, 84],
         [84, 84, 84],
         [84, 84, 84]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.1e8c9b6d903b795ead837d1334fbe4ff.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4562606811523438, 'inference': 9.036779403686523, 'postprocess': 0.4031658172607422},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[135, 147, 147],
         [133, 145, 145],
         [132, 144, 144],
         ...,
         [247, 242, 239],
         [247, 242, 239],
         [247, 242, 239]],
 
        [[146, 158, 158],
         [142, 154, 154],
         [138, 150, 150],
         ...,
         [247, 242, 239],
         [247, 242, 239],
         [247, 242, 239]],
 
        [[164, 176, 176],
         [160, 172, 172],
         [156, 166, 166],
         ...,
         [247, 242, 239],
         [247, 242, 239],
         [247, 242, 239]],
 
        ...,
 
        [[ 99,  94,  93],
         [106,  98,  98],
         [116, 105, 107],
         ...,
         [178, 168, 174],
         [171, 159, 165],
         [174, 162, 168]],
 
        [[ 83,  77,  78],
         [ 83,  75,  76],
         [ 97,  86,  89],
         ...,
         [139, 121, 128],
         [132, 111, 119],
         [127, 106, 114]],
 
        [[ 66,  60,  61],
         [ 55,  47,  48],
         [ 62,  50,  56],
         ...,
         [ 68,  47,  55],
         [ 74,  50,  58],
         [ 69,  45,  53]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.dbbb1c368f5ada95ebf45d45838b1bd7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7468929290771484, 'inference': 8.993864059448242, 'postprocess': 0.5159378051757812},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[130, 130, 130],
         [130, 130, 130],
         [130, 130, 130],
         ...,
         [130, 130, 130],
         [130, 130, 130],
         [130, 130, 130]],
 
        [[130, 130, 130],
         [130, 130, 130],
         [130, 130, 130],
         ...,
         [130, 130, 130],
         [130, 130, 130],
         [130, 130, 130]],
 
        [[130, 130, 130],
         [130, 130, 130],
         [130, 130, 130],
         ...,
         [130, 130, 130],
         [130, 130, 130],
         [130, 130, 130]],
 
        ...,
 
        [[130, 130, 130],
         [130, 130, 130],
         [130, 130, 130],
         ...,
         [130, 130, 130],
         [130, 130, 130],
         [130, 130, 130]],
 
        [[130, 130, 130],
         [130, 130, 130],
         [130, 130, 130],
         ...,
         [130, 130, 130],
         [130, 130, 130],
         [130, 130, 130]],
 
        [[130, 130, 130],
         [130, 130, 130],
         [130, 130, 130],
         ...,
         [130, 130, 130],
         [130, 130, 130],
         [130, 130, 130]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-43-_jpg.rf.dfa9d788bc69cea17fc9c3308d1668a7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.737356185913086, 'inference': 10.600090026855469, 'postprocess': 0.3559589385986328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.7bb3eef4deaf2aa9c2fb506c168e3f77.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3709068298339844, 'inference': 8.596420288085938, 'postprocess': 0.3597736358642578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[104, 112, 119],
         [148, 156, 163],
         [240, 248, 255],
         ...,
         [167, 171, 176],
         [143, 147, 152],
         [147, 151, 156]],
 
        [[135, 143, 150],
         [186, 194, 201],
         [212, 220, 227],
         ...,
         [133, 137, 142],
         [134, 138, 143],
         [136, 140, 145]],
 
        [[146, 154, 161],
         [182, 190, 197],
         [182, 190, 197],
         ...,
         [156, 160, 165],
         [156, 160, 165],
         [116, 120, 125]],
 
        ...,
 
        [[ 95,  93,  99],
         [111, 109, 115],
         [118, 118, 124],
         ...,
         [ 95,  97,  97],
         [140, 142, 142],
         [146, 148, 148]],
 
        [[109, 105, 111],
         [106, 102, 108],
         [117, 115, 121],
         ...,
         [ 93,  95,  95],
         [104, 106, 106],
         [106, 108, 108]],
 
        [[115, 108, 115],
         [111, 107, 113],
         [145, 141, 147],
         ...,
         [ 96,  98,  98],
         [ 88,  90,  90],
         [ 90,  92,  92]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.a71dc55407736290b223f5ac71e8f714.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8761157989501953, 'inference': 9.09876823425293, 'postprocess': 0.4355907440185547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-44-_jpg.rf.c7dd071d0249ce1a01f71938c20eec2e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4684200286865234, 'inference': 12.30168342590332, 'postprocess': 0.34117698669433594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.b885bd57535b8adc199e02edae6a24e9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.2001266479492188, 'inference': 11.881828308105469, 'postprocess': 0.42366981506347656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        ...,
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.c5a8cb20f04ee8a90e2295b8e74a9dd1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3751983642578125, 'inference': 9.134769439697266, 'postprocess': 0.32329559326171875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[150, 139, 135],
         [148, 137, 133],
         [157, 146, 142],
         ...,
         [102, 102, 108],
         [ 98,  98, 104],
         [ 93,  93,  99]],
 
        [[138, 127, 123],
         [139, 128, 124],
         [152, 141, 137],
         ...,
         [ 99,  99, 105],
         [ 96,  96, 102],
         [ 93,  93,  99]],
 
        [[143, 132, 128],
         [148, 137, 133],
         [164, 153, 149],
         ...,
         [112, 112, 118],
         [111, 111, 117],
         [110, 110, 116]],
 
        ...,
 
        [[ 46,  53,  50],
         [ 51,  58,  55],
         [ 56,  61,  62],
         ...,
         [112, 120, 120],
         [133, 141, 141],
         [144, 152, 152]],
 
        [[ 62,  69,  66],
         [ 64,  71,  68],
         [ 51,  56,  57],
         ...,
         [105, 112, 115],
         [106, 113, 116],
         [ 97, 106, 109]],
 
        [[ 85,  92,  89],
         [ 87,  94,  91],
         [ 64,  69,  70],
         ...,
         [148, 155, 158],
         [138, 147, 150],
         [ 97, 106, 109]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-46-_jpg.rf.ce935f81e259f69e3b8930f080141ac5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.764059066772461, 'inference': 9.55510139465332, 'postprocess': 0.4048347473144531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  9,  17,  16],
         [  8,  16,  16],
         [ 15,  20,  29],
         ...,
         [143, 152, 161],
         [136, 145, 159],
         [135, 143, 160]],
 
        [[  4,  12,  11],
         [  5,  13,  13],
         [ 11,  16,  25],
         ...,
         [145, 154, 163],
         [138, 147, 161],
         [135, 143, 160]],
 
        [[ 12,  20,  19],
         [ 14,  22,  22],
         [ 17,  22,  31],
         ...,
         [144, 153, 162],
         [137, 146, 160],
         [133, 141, 158]],
 
        ...,
 
        [[ 11,  11,  35],
         [ 15,  18,  39],
         [ 16,  22,  41],
         ...,
         [ 52,  63,  71],
         [ 53,  64,  72],
         [ 52,  63,  71]],
 
        [[ 11,   8,  34],
         [ 12,  12,  36],
         [ 13,  19,  38],
         ...,
         [ 50,  63,  71],
         [ 50,  63,  71],
         [ 48,  61,  69]],
 
        [[ 13,  10,  36],
         [ 13,  13,  37],
         [ 17,  21,  40],
         ...,
         [ 51,  64,  72],
         [ 49,  62,  70],
         [ 46,  59,  67]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.07110750200ea396e69160ea5e20ce7c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6837120056152344, 'inference': 9.25135612487793, 'postprocess': 0.5252361297607422},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [85, 80, 77],
         [21, 15, 10],
         [12,  3,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [91, 82, 79],
         [21, 10,  6],
         [13,  1,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [93, 82, 78],
         [18,  6,  2],
         [14,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.b5c407806790722e3104e1521d054f67.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5919208526611328, 'inference': 9.217262268066406, 'postprocess': 0.5083084106445312},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-47-_jpg.rf.e7a3996bac750b9ba88cc570c1aad418.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6689300537109375, 'inference': 11.587858200073242, 'postprocess': 0.6642341613769531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[212, 197, 194],
         [224, 209, 206],
         [198, 183, 180],
         ...,
         [102,  98, 109],
         [101,  95, 106],
         [ 98,  92, 103]],
 
        [[227, 212, 209],
         [233, 218, 215],
         [202, 187, 184],
         ...,
         [107, 103, 114],
         [109, 103, 114],
         [110, 104, 115]],
 
        [[222, 210, 206],
         [226, 214, 210],
         [199, 187, 183],
         ...,
         [109, 105, 116],
         [114, 110, 121],
         [119, 115, 126]],
 
        ...,
 
        [[244, 249, 255],
         [240, 245, 254],
         [224, 229, 238],
         ...,
         [109,  98, 100],
         [105,  94,  96],
         [110,  99, 101]],
 
        [[243, 248, 255],
         [243, 248, 255],
         [230, 235, 244],
         ...,
         [128, 117, 119],
         [120, 109, 111],
         [129, 118, 120]],
 
        [[239, 244, 253],
         [246, 251, 255],
         [237, 242, 251],
         ...,
         [138, 127, 129],
         [131, 120, 122],
         [144, 133, 135]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.5f35e42f4f2abf32c388f70cd219d8cb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5761852264404297, 'inference': 9.563922882080078, 'postprocess': 0.3838539123535156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 0, 1],
         [2, 0, 1],
         [2, 0, 0],
         ...,
         [0, 1, 0],
         [0, 4, 5],
         [0, 1, 1]],
 
        [[2, 0, 1],
         [0, 0, 1],
         [2, 0, 1],
         ...,
         [0, 1, 0],
         [0, 4, 5],
         [0, 1, 1]],
 
        [[0, 0, 3],
         [0, 0, 3],
         [0, 0, 3],
         ...,
         [0, 1, 0],
         [0, 4, 5],
         [0, 0, 1]],
 
        ...,
 
        [[4, 1, 3],
         [2, 1, 3],
         [0, 0, 1],
         ...,
         [0, 1, 0],
         [0, 1, 0],
         [0, 1, 0]],
 
        [[2, 0, 1],
         [2, 1, 3],
         [1, 0, 2],
         ...,
         [0, 1, 0],
         [0, 1, 0],
         [0, 1, 0]],
 
        [[2, 0, 1],
         [1, 0, 2],
         [3, 2, 4],
         ...,
         [0, 1, 0],
         [0, 1, 0],
         [0, 1, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.68853a3577e0a03df1d073ae0713d353.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8477439880371094, 'inference': 9.531259536743164, 'postprocess': 0.4227161407470703},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-48-_jpg.rf.88ad29d468c207f23e22f16b5129a5fe.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7998218536376953, 'inference': 8.963346481323242, 'postprocess': 0.4138946533203125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 53,  60,  55],
         [ 53,  60,  55],
         [ 53,  60,  55],
         ...,
         [126,  63,  25],
         [146,  67,  24],
         [157,  69,  23]],
 
        [[ 53,  60,  55],
         [ 53,  60,  55],
         [ 53,  60,  55],
         ...,
         [142,  80,  32],
         [153,  78,  26],
         [154,  75,  18]],
 
        [[ 54,  61,  56],
         [ 54,  61,  56],
         [ 54,  61,  56],
         ...,
         [184, 124,  58],
         [181, 119,  48],
         [174, 112,  34]],
 
        ...,
 
        [[196, 177, 144],
         [196, 177, 144],
         [197, 178, 145],
         ...,
         [ 98,  83,  80],
         [ 60,  45,  42],
         [ 48,  33,  30]],
 
        [[196, 177, 144],
         [196, 177, 144],
         [197, 178, 145],
         ...,
         [ 99,  84,  81],
         [ 62,  47,  44],
         [ 50,  35,  32]],
 
        [[196, 177, 144],
         [196, 177, 144],
         [197, 178, 145],
         ...,
         [100,  85,  82],
         [ 64,  49,  46],
         [ 53,  38,  35]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.7566ef76e82dccc357ff1691393cdff8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.497030258178711, 'inference': 9.21320915222168, 'postprocess': 0.4131793975830078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0, 12],
         [ 0,  0, 12],
         [ 0,  0,  9],
         ...,
         [ 0,  1,  0],
         [ 0,  0,  0],
         [ 0,  1,  1]],
 
        [[ 0,  0,  7],
         [ 0,  0,  6],
         [ 0,  0,  4],
         ...,
         [ 0,  1,  0],
         [ 0,  0,  0],
         [ 0,  1,  1]],
 
        [[ 4,  0,  1],
         [ 8,  5,  7],
         [13, 11, 11],
         ...,
         [ 0,  1,  0],
         [ 0,  0,  0],
         [ 0,  1,  1]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.a2d3901d28aa5d5a7040913eaffb5011.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.177000045776367, 'inference': 8.922100067138672, 'postprocess': 0.6554126739501953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        ...,
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-49-_jpg.rf.ea29a2566cbd0e48094adae5b4cf7087.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4476776123046875, 'inference': 9.123802185058594, 'postprocess': 0.5319118499755859},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.5fbe76ea8a76e35b41970ccb6f5e4730.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7414093017578125, 'inference': 8.97526741027832, 'postprocess': 0.766754150390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[75, 62, 60],
         [75, 62, 60],
         [74, 61, 59],
         ...,
         [69, 64, 65],
         [70, 65, 66],
         [71, 66, 67]],
 
        [[75, 62, 60],
         [74, 61, 59],
         [74, 61, 59],
         ...,
         [70, 65, 66],
         [71, 66, 67],
         [72, 67, 68]],
 
        [[74, 61, 59],
         [73, 60, 58],
         [73, 60, 58],
         ...,
         [70, 65, 66],
         [71, 66, 67],
         [72, 67, 68]],
 
        ...,
 
        [[72, 72, 72],
         [74, 74, 74],
         [77, 77, 77],
         ...,
         [56, 51, 52],
         [59, 54, 55],
         [59, 54, 55]],
 
        [[79, 79, 79],
         [82, 82, 82],
         [86, 86, 86],
         ...,
         [54, 49, 50],
         [55, 50, 51],
         [54, 49, 50]],
 
        [[84, 84, 84],
         [88, 88, 88],
         [92, 92, 92],
         ...,
         [53, 48, 49],
         [54, 49, 50],
         [52, 47, 48]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.ead443dd9f37ce2e29069e9049d804e7.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5151500701904297, 'inference': 8.870840072631836, 'postprocess': 0.6425380706787109},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48],
         ...,
         [ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48]],
 
        [[ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48],
         ...,
         [ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48]],
 
        [[ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48],
         ...,
         [ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48]],
 
        ...,
 
        [[ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48],
         ...,
         [139, 134, 135],
         [137, 132, 133],
         [137, 132, 133]],
 
        [[ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48],
         ...,
         [137, 132, 133],
         [135, 130, 131],
         [134, 129, 130]],
 
        [[ 48,  48,  48],
         [ 48,  48,  48],
         [ 48,  48,  48],
         ...,
         [135, 130, 131],
         [132, 127, 128],
         [130, 125, 126]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-5-_jpg.rf.f3d79095cd22dd76dc99c447f82e50d0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7359256744384766, 'inference': 9.876489639282227, 'postprocess': 0.8525848388671875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 6],
         [2, 0, 6],
         [2, 0, 6]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 4],
         [2, 0, 4],
         [2, 0, 4]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 0, 1],
         [5, 0, 4],
         [5, 0, 4]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.38b94f88de5e174741f7f535773d0c40.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7325878143310547, 'inference': 9.070873260498047, 'postprocess': 0.34427642822265625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[62, 62, 62],
         [62, 62, 62],
         [62, 62, 62],
         ...,
         [62, 62, 62],
         [62, 62, 62],
         [62, 62, 62]],
 
        [[62, 62, 62],
         [62, 62, 62],
         [62, 62, 62],
         ...,
         [62, 62, 62],
         [62, 62, 62],
         [62, 62, 62]],
 
        [[62, 62, 62],
         [62, 62, 62],
         [62, 62, 62],
         ...,
         [62, 62, 62],
         [62, 62, 62],
         [62, 62, 62]],
 
        ...,
 
        [[62, 62, 62],
         [62, 62, 62],
         [62, 62, 62],
         ...,
         [62, 62, 62],
         [62, 62, 62],
         [62, 62, 62]],
 
        [[62, 62, 62],
         [62, 62, 62],
         [62, 62, 62],
         ...,
         [62, 62, 62],
         [62, 62, 62],
         [62, 62, 62]],
 
        [[62, 62, 62],
         [62, 62, 62],
         [62, 62, 62],
         ...,
         [62, 62, 62],
         [62, 62, 62],
         [62, 62, 62]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.bc4a2c2beca4c0a398dbc10fc7efc934.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4576911926269531, 'inference': 9.402751922607422, 'postprocess': 0.7028579711914062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 45,  60,  79],
         [ 15,  30,  49],
         [ 59,  70,  90],
         ...,
         [ 58,  68,  86],
         [ 64,  73,  93],
         [ 71,  80, 100]],
 
        [[ 47,  62,  81],
         [ 25,  39,  58],
         [ 58,  69,  89],
         ...,
         [ 76,  86, 104],
         [ 47,  56,  76],
         [ 56,  65,  85]],
 
        [[ 43,  57,  75],
         [ 32,  46,  64],
         [ 51,  63,  81],
         ...,
         [ 84,  96, 114],
         [ 28,  37,  57],
         [ 39,  48,  68]],
 
        ...,
 
        [[116, 113, 109],
         [108, 105, 101],
         [110, 107, 103],
         ...,
         [119, 117, 117],
         [118, 116, 116],
         [114, 112, 112]],
 
        [[115, 112, 108],
         [104, 101,  97],
         [105, 102,  98],
         ...,
         [119, 117, 117],
         [120, 118, 118],
         [119, 117, 117]],
 
        [[113, 110, 106],
         [ 98,  95,  91],
         [ 98,  95,  91],
         ...,
         [111, 109, 109],
         [107, 105, 105],
         [104, 102, 102]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-51-_jpg.rf.f708e8dd61e5d6c7f0417a6e7befa47d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6078948974609375, 'inference': 9.49239730834961, 'postprocess': 0.6983280181884766},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        ...,
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]],
 
        [[18, 18, 18],
         [18, 18, 18],
         [18, 18, 18],
         ...,
         [18, 18, 18],
         [18, 18, 18],
         [18, 18, 18]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.d8822e3b6a7c8fe4c73543cd7d7ae9cd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5842914581298828, 'inference': 16.0677433013916, 'postprocess': 0.7536411285400391},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [1, 2, 0],
         [1, 2, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [0, 1, 0],
         [1, 2, 0],
         [0, 1, 0]],
 
        [[3, 1, 1],
         [2, 0, 0],
         [2, 0, 0],
         ...,
         [1, 2, 0],
         [1, 2, 0],
         [0, 1, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.def4f32d6ba09bcb7a22b8a34a7c8115.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7457008361816406, 'inference': 13.983011245727539, 'postprocess': 0.7627010345458984},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[247, 217, 200],
         [247, 217, 200],
         [247, 217, 200],
         ...,
         [ 51,  85,  68],
         [ 62,  98,  81],
         [ 68, 104,  87]],
 
        [[249, 219, 202],
         [249, 219, 202],
         [249, 219, 202],
         ...,
         [ 54,  88,  71],
         [ 65, 101,  84],
         [ 72, 108,  91]],
 
        [[249, 217, 198],
         [249, 217, 198],
         [249, 217, 198],
         ...,
         [ 47,  80,  65],
         [ 56,  92,  75],
         [ 62,  98,  81]],
 
        ...,
 
        [[125, 114, 122],
         [124, 113, 121],
         [112, 101, 109],
         ...,
         [ 94,  83,  93],
         [ 87,  76,  86],
         [ 81,  70,  80]],
 
        [[132, 124, 131],
         [133, 125, 132],
         [120, 112, 119],
         ...,
         [ 93,  82,  90],
         [ 88,  77,  85],
         [ 84,  73,  81]],
 
        [[125, 117, 124],
         [129, 121, 128],
         [119, 111, 118],
         ...,
         [ 90,  79,  87],
         [ 85,  74,  82],
         [ 82,  71,  79]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-52-_jpg.rf.f05e2cd157034e39c0eb9db8e7f09bb5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7726421356201172, 'inference': 9.58251953125, 'postprocess': 0.36334991455078125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[48, 48, 48],
         [48, 48, 48],
         [48, 48, 48],
         ...,
         [48, 48, 48],
         [48, 48, 48],
         [48, 48, 48]],
 
        [[48, 48, 48],
         [48, 48, 48],
         [48, 48, 48],
         ...,
         [48, 48, 48],
         [48, 48, 48],
         [48, 48, 48]],
 
        [[48, 48, 48],
         [48, 48, 48],
         [48, 48, 48],
         ...,
         [48, 48, 48],
         [48, 48, 48],
         [48, 48, 48]],
 
        ...,
 
        [[48, 48, 48],
         [48, 48, 48],
         [48, 48, 48],
         ...,
         [48, 48, 48],
         [48, 48, 48],
         [48, 48, 48]],
 
        [[48, 48, 48],
         [48, 48, 48],
         [48, 48, 48],
         ...,
         [48, 48, 48],
         [48, 48, 48],
         [48, 48, 48]],
 
        [[48, 48, 48],
         [48, 48, 48],
         [48, 48, 48],
         ...,
         [48, 48, 48],
         [48, 48, 48],
         [48, 48, 48]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.1ee5c3ca066d62d6b4aed03d3575b5ea.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3391971588134766, 'inference': 9.806632995605469, 'postprocess': 0.3685951232910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[137, 139, 127],
         [121, 123, 111],
         [104, 106,  94],
         ...,
         [132, 138, 133],
         [124, 130, 125],
         [116, 122, 117]],
 
        [[125, 127, 115],
         [124, 126, 114],
         [116, 118, 106],
         ...,
         [142, 148, 143],
         [142, 148, 143],
         [131, 137, 132]],
 
        [[118, 120, 108],
         [134, 136, 124],
         [134, 136, 124],
         ...,
         [131, 137, 132],
         [131, 137, 132],
         [131, 137, 132]],
 
        ...,
 
        [[ 81,  80,  70],
         [ 82,  81,  71],
         [ 92,  91,  81],
         ...,
         [ 91,  94,  92],
         [ 97, 100,  98],
         [ 90,  93,  91]],
 
        [[ 93,  91,  80],
         [ 85,  83,  72],
         [ 88,  86,  76],
         ...,
         [ 91,  94,  92],
         [100, 103, 101],
         [ 94,  97,  95]],
 
        [[106, 104,  93],
         [ 88,  86,  75],
         [ 82,  80,  70],
         ...,
         [ 92,  95,  93],
         [103, 106, 104],
         [ 99, 102, 100]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.540025fd1af3f0c105d5a5f489e307da.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8718242645263672, 'inference': 9.83572006225586, 'postprocess': 0.5340576171875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  3]],
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  3],
         [ 0,  0,  3],
         [ 0,  0,  3]],
 
        [[ 2,  3,  1],
         [ 1,  2,  0],
         [ 0,  1,  0],
         ...,
         [ 0,  0,  1],
         [ 0,  0,  1],
         [ 0,  0,  1]],
 
        ...,
 
        [[ 3,  3,  3],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [39, 45, 44],
         [36, 42, 41],
         [47, 53, 52]],
 
        [[ 2,  2,  2],
         [ 0,  0,  0],
         [ 1,  1,  1],
         ...,
         [63, 69, 68],
         [51, 57, 56],
         [45, 51, 50]],
 
        [[ 1,  1,  1],
         [ 0,  0,  0],
         [ 2,  2,  2],
         ...,
         [85, 91, 90],
         [69, 75, 74],
         [52, 58, 57]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-53-_jpg.rf.7815bad4623e4bb70645806ea5a77a47.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5721321105957031, 'inference': 9.374856948852539, 'postprocess': 0.3867149353027344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        ...,
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.7cc54c3290a15bece4443e1f76a5800c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8088817596435547, 'inference': 9.004831314086914, 'postprocess': 0.3223419189453125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 18,  21,  25],
         [ 18,  21,  25],
         [ 19,  22,  26],
         ...,
         [ 45,  82, 104],
         [ 38,  76, 100],
         [ 32,  70,  94]],
 
        [[ 14,  21,  24],
         [ 15,  23,  23],
         [ 15,  22,  25],
         ...,
         [ 42,  80, 104],
         [ 38,  76, 100],
         [ 32,  73,  96]],
 
        [[  6,  22,  21],
         [  7,  24,  21],
         [  7,  23,  22],
         ...,
         [ 40,  78, 102],
         [ 37,  77, 102],
         [ 34,  75, 100]],
 
        ...,
 
        [[160, 168, 168],
         [162, 170, 170],
         [159, 167, 167],
         ...,
         [ 89, 107, 114],
         [ 77,  96, 104],
         [ 73,  92, 100]],
 
        [[151, 159, 159],
         [154, 162, 162],
         [154, 162, 162],
         ...,
         [ 92, 109, 118],
         [ 87, 106, 114],
         [ 87, 106, 114]],
 
        [[160, 168, 168],
         [158, 166, 166],
         [151, 159, 159],
         ...,
         [ 97, 114, 123],
         [ 97, 116, 124],
         [100, 119, 127]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.a5904fe5b078b76264e6bf4b9a026627.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3370513916015625, 'inference': 9.41777229309082, 'postprocess': 0.3578662872314453},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[106, 106, 106],
         [106, 106, 106],
         [106, 106, 106],
         ...,
         [106, 106, 106],
         [106, 106, 106],
         [106, 106, 106]],
 
        [[106, 106, 106],
         [106, 106, 106],
         [106, 106, 106],
         ...,
         [106, 106, 106],
         [106, 106, 106],
         [106, 106, 106]],
 
        [[106, 106, 106],
         [106, 106, 106],
         [106, 106, 106],
         ...,
         [106, 106, 106],
         [106, 106, 106],
         [106, 106, 106]],
 
        ...,
 
        [[106, 106, 106],
         [106, 106, 106],
         [106, 106, 106],
         ...,
         [106, 106, 106],
         [106, 106, 106],
         [106, 106, 106]],
 
        [[106, 106, 106],
         [106, 106, 106],
         [106, 106, 106],
         ...,
         [106, 106, 106],
         [106, 106, 106],
         [106, 106, 106]],
 
        [[106, 106, 106],
         [106, 106, 106],
         [106, 106, 106],
         ...,
         [106, 106, 106],
         [106, 106, 106],
         [106, 106, 106]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-54-_jpg.rf.f0c232122401c2974af21cab0c286439.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7390251159667969, 'inference': 9.552717208862305, 'postprocess': 0.3509521484375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 65,  80,  83],
         [ 48,  63,  66],
         [ 26,  39,  41],
         ...,
         [  0, 115,  67],
         [ 11, 131,  83],
         [ 15, 135,  87]],
 
        [[ 60,  72,  76],
         [ 49,  61,  65],
         [ 29,  42,  44],
         ...,
         [  0, 118,  70],
         [  5, 125,  77],
         [  9, 129,  81]],
 
        [[ 46,  57,  61],
         [ 43,  54,  58],
         [ 32,  44,  46],
         ...,
         [ 21, 140,  95],
         [ 17, 137,  89],
         [ 19, 139,  91]],
 
        ...,
 
        [[183, 182, 186],
         [187, 186, 190],
         [184, 183, 187],
         ...,
         [135, 187, 187],
         [106, 158, 158],
         [ 99, 150, 152]],
 
        [[186, 185, 189],
         [188, 187, 191],
         [183, 182, 186],
         ...,
         [136, 191, 188],
         [106, 160, 160],
         [ 99, 153, 153]],
 
        [[187, 186, 190],
         [189, 188, 192],
         [183, 182, 186],
         ...,
         [132, 188, 183],
         [104, 158, 158],
         [ 97, 151, 151]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.87cabcde97c75c9068793716694ef1c5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7049312591552734, 'inference': 9.586572647094727, 'postprocess': 0.7007122039794922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        ...,
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.ab51f5f29c2cabd3037a7f562d7c3a48.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.523733139038086, 'inference': 9.321212768554688, 'postprocess': 0.3669261932373047},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[54, 54, 54],
         [54, 54, 54],
         [54, 54, 54],
         ...,
         [54, 54, 54],
         [54, 54, 54],
         [54, 54, 54]],
 
        [[54, 54, 54],
         [54, 54, 54],
         [54, 54, 54],
         ...,
         [54, 54, 54],
         [54, 54, 54],
         [54, 54, 54]],
 
        [[54, 54, 54],
         [54, 54, 54],
         [54, 54, 54],
         ...,
         [54, 54, 54],
         [54, 54, 54],
         [54, 54, 54]],
 
        ...,
 
        [[54, 54, 54],
         [54, 54, 54],
         [54, 54, 54],
         ...,
         [54, 54, 54],
         [54, 54, 54],
         [54, 54, 54]],
 
        [[54, 54, 54],
         [54, 54, 54],
         [54, 54, 54],
         ...,
         [54, 54, 54],
         [54, 54, 54],
         [54, 54, 54]],
 
        [[54, 54, 54],
         [54, 54, 54],
         [54, 54, 54],
         ...,
         [54, 54, 54],
         [54, 54, 54],
         [54, 54, 54]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-55-_jpg.rf.d55ddba83fd6401d17e234092ab2a378.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8124580383300781, 'inference': 11.222124099731445, 'postprocess': 0.9622573852539062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.18ade0de978aa6c6068402dd80642ccf.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4803409576416016, 'inference': 16.89910888671875, 'postprocess': 1.287698745727539},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.41ab69bbd0dab6a5f9693448b7cf2cd1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0236968994140625, 'inference': 13.705730438232422, 'postprocess': 0.5581378936767578},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[219, 214, 211],
         [208, 203, 200],
         [230, 225, 222],
         ...,
         [182, 181, 177],
         [182, 181, 177],
         [181, 180, 176]],
 
        [[213, 208, 205],
         [195, 190, 187],
         [208, 203, 200],
         ...,
         [182, 181, 177],
         [181, 180, 176],
         [181, 180, 176]],
 
        [[231, 228, 224],
         [211, 208, 204],
         [207, 204, 200],
         ...,
         [182, 181, 177],
         [182, 181, 177],
         [181, 180, 176]],
 
        ...,
 
        [[110,  92,  81],
         [ 81,  63,  52],
         [ 74,  56,  45],
         ...,
         [ 73,  58,  49],
         [ 75,  58,  49],
         [ 75,  58,  49]],
 
        [[112,  95,  82],
         [ 79,  62,  49],
         [ 93,  75,  64],
         ...,
         [ 75,  60,  51],
         [ 73,  56,  47],
         [ 72,  55,  46]],
 
        [[101,  84,  71],
         [ 94,  77,  64],
         [119, 101,  90],
         ...,
         [ 80,  65,  56],
         [ 74,  57,  48],
         [ 71,  54,  45]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-56-_jpg.rf.8c8d4aebd0f2fb128a231b7b798bd669.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7681121826171875, 'inference': 9.30929183959961, 'postprocess': 0.4687309265136719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.7d1b62f97cac4df979e6f394117d04d1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.519918441772461, 'inference': 9.399890899658203, 'postprocess': 0.3783702850341797},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[169, 151, 140],
         [179, 161, 150],
         [189, 173, 161],
         ...,
         [248, 249, 247],
         [250, 251, 249],
         [251, 252, 250]],
 
        [[175, 157, 146],
         [181, 163, 152],
         [187, 171, 159],
         ...,
         [248, 249, 247],
         [250, 251, 249],
         [252, 253, 251]],
 
        [[186, 168, 157],
         [186, 168, 157],
         [187, 171, 159],
         ...,
         [250, 251, 249],
         [251, 252, 250],
         [252, 253, 251]],
 
        ...,
 
        [[117, 117, 117],
         [134, 134, 134],
         [151, 151, 151],
         ...,
         [119, 124, 122],
         [130, 135, 133],
         [126, 131, 129]],
 
        [[132, 132, 132],
         [136, 136, 136],
         [153, 153, 153],
         ...,
         [128, 133, 131],
         [136, 141, 139],
         [121, 126, 124]],
 
        [[139, 139, 139],
         [131, 131, 131],
         [146, 146, 146],
         ...,
         [130, 135, 133],
         [136, 141, 139],
         [115, 120, 118]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.935c3e2cd37b84d8f63043ca26ebb402.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6911029815673828, 'inference': 10.512113571166992, 'postprocess': 0.7691383361816406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        [[12, 12, 12],
         [12, 12, 12],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-57-_jpg.rf.98eff15743815f755fd3722f3836c850.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4729499816894531, 'inference': 10.210037231445312, 'postprocess': 0.42438507080078125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.6f4e81b1ca5d29168033fa69c92c6e24.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4178752899169922, 'inference': 9.089946746826172, 'postprocess': 0.38933753967285156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[128, 125, 120],
         [129, 126, 121],
         [129, 126, 121],
         ...,
         [120, 116, 111],
         [121, 117, 112],
         [122, 118, 113]],
 
        [[126, 123, 118],
         [127, 124, 119],
         [128, 125, 120],
         ...,
         [120, 116, 111],
         [120, 116, 111],
         [121, 117, 112]],
 
        [[124, 121, 116],
         [126, 123, 118],
         [126, 123, 118],
         ...,
         [119, 115, 110],
         [119, 115, 110],
         [120, 116, 111]],
 
        ...,
 
        [[100,  98,  97],
         [ 96,  94,  93],
         [ 87,  85,  84],
         ...,
         [111, 107, 106],
         [113, 109, 108],
         [110, 106, 105]],
 
        [[ 95,  93,  92],
         [ 94,  92,  91],
         [ 87,  85,  84],
         ...,
         [112, 108, 107],
         [113, 109, 108],
         [109, 105, 104]],
 
        [[ 90,  88,  87],
         [ 91,  89,  88],
         [ 86,  84,  83],
         ...,
         [113, 109, 108],
         [113, 109, 108],
         [108, 104, 103]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.d3fc5f4680f6e28784c2f686b25736bd.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.710653305053711, 'inference': 9.211063385009766, 'postprocess': 0.3676414489746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        ...,
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]],
 
        [[2, 2, 2],
         [2, 2, 2],
         [2, 2, 2],
         ...,
         [2, 2, 2],
         [2, 2, 2],
         [2, 2, 2]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-59-_jpg.rf.e6834834f2f355ae4e8d55f881695099.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4235973358154297, 'inference': 9.195327758789062, 'postprocess': 0.4220008850097656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[245, 241, 240],
         [246, 242, 241],
         [248, 244, 243],
         ...,
         [195, 176, 168],
         [196, 177, 169],
         [196, 177, 169]],
 
        [[245, 241, 240],
         [246, 242, 241],
         [248, 244, 243],
         ...,
         [194, 175, 167],
         [194, 175, 167],
         [195, 176, 168]],
 
        [[245, 241, 240],
         [246, 242, 241],
         [248, 244, 243],
         ...,
         [192, 173, 165],
         [192, 173, 165],
         [192, 173, 165]],
 
        ...,
 
        [[ 38,  35,  37],
         [ 27,  24,  26],
         [ 28,  23,  25],
         ...,
         [ 98, 100, 101],
         [ 77,  79,  80],
         [ 59,  61,  62]],
 
        [[ 37,  34,  36],
         [ 30,  27,  29],
         [ 32,  27,  29],
         ...,
         [116, 115, 117],
         [ 93,  93,  93],
         [ 72,  72,  72]],
 
        [[ 40,  37,  39],
         [ 36,  33,  35],
         [ 40,  35,  37],
         ...,
         [117, 116, 118],
         [102, 100, 100],
         [ 82,  80,  80]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.20fe5b2f0851cc97b06f4a9d68881330.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8246173858642578, 'inference': 9.447574615478516, 'postprocess': 0.35762786865234375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        ...,
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]],
 
        [[22, 22, 22],
         [22, 22, 22],
         [22, 22, 22],
         ...,
         [22, 22, 22],
         [22, 22, 22],
         [22, 22, 22]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.cbd6e701a750684661efc0363bd607aa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3394355773925781, 'inference': 9.20867919921875, 'postprocess': 0.40459632873535156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-6-_jpg.rf.dcd3fa3c9b81035067fbcb5e4998db50.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7843246459960938, 'inference': 9.618282318115234, 'postprocess': 0.3662109375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[185, 187, 187],
         [181, 183, 183],
         [165, 167, 167],
         ...,
         [105, 108, 113],
         [ 97, 100, 105],
         [100, 103, 108]],
 
        [[180, 182, 182],
         [179, 181, 181],
         [174, 176, 176],
         ...,
         [103, 106, 111],
         [ 97, 100, 105],
         [101, 104, 109]],
 
        [[182, 184, 184],
         [176, 178, 178],
         [178, 180, 180],
         ...,
         [103, 106, 111],
         [ 99, 102, 107],
         [104, 107, 112]],
 
        ...,
 
        [[163, 165, 165],
         [177, 179, 179],
         [161, 163, 163],
         ...,
         [134, 132, 132],
         [138, 136, 136],
         [125, 123, 123]],
 
        [[187, 189, 189],
         [185, 187, 187],
         [176, 178, 178],
         ...,
         [129, 127, 127],
         [134, 132, 132],
         [136, 134, 134]],
 
        [[196, 198, 198],
         [184, 186, 186],
         [181, 183, 183],
         ...,
         [128, 126, 126],
         [133, 131, 131],
         [148, 146, 146]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.7863aa2444a65c631e8af7c5b9ac8edb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.691579818725586, 'inference': 9.20557975769043, 'postprocess': 0.6365776062011719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[113, 113, 113],
         [113, 113, 113],
         [113, 113, 113],
         ...,
         [113, 113, 113],
         [113, 113, 113],
         [113, 113, 113]],
 
        [[113, 113, 113],
         [113, 113, 113],
         [113, 113, 113],
         ...,
         [113, 113, 113],
         [113, 113, 113],
         [113, 113, 113]],
 
        [[113, 113, 113],
         [113, 113, 113],
         [113, 113, 113],
         ...,
         [113, 113, 113],
         [113, 113, 113],
         [113, 113, 113]],
 
        ...,
 
        [[113, 113, 113],
         [113, 113, 113],
         [113, 113, 113],
         ...,
         [113, 113, 113],
         [113, 113, 113],
         [113, 113, 113]],
 
        [[113, 113, 113],
         [113, 113, 113],
         [113, 113, 113],
         ...,
         [113, 113, 113],
         [113, 113, 113],
         [113, 113, 113]],
 
        [[113, 113, 113],
         [113, 113, 113],
         [113, 113, 113],
         ...,
         [113, 113, 113],
         [113, 113, 113],
         [113, 113, 113]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.d2884b15285690c8542d7391ee04de10.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.703023910522461, 'inference': 14.498710632324219, 'postprocess': 0.6518363952636719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        ...,
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]],
 
        [[108, 108, 108],
         [108, 108, 108],
         [108, 108, 108],
         ...,
         [108, 108, 108],
         [108, 108, 108],
         [108, 108, 108]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-62-_jpg.rf.d50db2cc8bb871fd0925592de1923193.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7406940460205078, 'inference': 9.187459945678711, 'postprocess': 0.3528594970703125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        ...,
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]],
 
        [[24, 24, 24],
         [24, 24, 24],
         [24, 24, 24],
         ...,
         [24, 24, 24],
         [24, 24, 24],
         [24, 24, 24]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.75d85a055ab217101c1e32000dd5826b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5971660614013672, 'inference': 13.881206512451172, 'postprocess': 0.43702125549316406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[60, 60, 60],
         [60, 60, 60],
         [60, 60, 60],
         ...,
         [60, 60, 60],
         [60, 60, 60],
         [60, 60, 60]],
 
        [[60, 60, 60],
         [60, 60, 60],
         [60, 60, 60],
         ...,
         [60, 60, 60],
         [60, 60, 60],
         [60, 60, 60]],
 
        [[60, 60, 60],
         [60, 60, 60],
         [60, 60, 60],
         ...,
         [60, 60, 60],
         [60, 60, 60],
         [60, 60, 60]],
 
        ...,
 
        [[60, 60, 60],
         [60, 60, 60],
         [60, 60, 60],
         ...,
         [60, 60, 60],
         [60, 60, 60],
         [60, 60, 60]],
 
        [[60, 60, 60],
         [60, 60, 60],
         [60, 60, 60],
         ...,
         [60, 60, 60],
         [60, 60, 60],
         [60, 60, 60]],
 
        [[60, 60, 60],
         [60, 60, 60],
         [60, 60, 60],
         ...,
         [60, 60, 60],
         [60, 60, 60],
         [60, 60, 60]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.81a9ac78e24a93573acdd933a0dd3b2a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9969940185546875, 'inference': 12.697696685791016, 'postprocess': 0.7503032684326172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[183, 198, 190],
         [180, 195, 187],
         [225, 238, 230],
         ...,
         [ 23,  64,  67],
         [ 63,  92, 106],
         [ 47,  73,  90]],
 
        [[203, 218, 210],
         [195, 208, 200],
         [233, 246, 238],
         ...,
         [ 11,  49,  53],
         [ 49,  81,  94],
         [ 63,  89, 105]],
 
        [[225, 237, 231],
         [204, 216, 210],
         [240, 250, 244],
         ...,
         [ 11,  49,  53],
         [ 43,  75,  86],
         [ 66,  95, 109]],
 
        ...,
 
        [[118, 127, 137],
         [118, 127, 140],
         [125, 134, 148],
         ...,
         [120, 115, 114],
         [ 91,  87,  86],
         [ 90,  86,  85]],
 
        [[110, 118, 131],
         [125, 134, 147],
         [132, 141, 155],
         ...,
         [118, 113, 112],
         [ 81,  78,  74],
         [ 83,  80,  76]],
 
        [[114, 122, 135],
         [135, 144, 157],
         [136, 145, 159],
         ...,
         [121, 116, 115],
         [ 83,  80,  76],
         [ 90,  87,  83]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-63-_jpg.rf.f4fd8956206d712c6b9964dfbfe1567e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9614696502685547, 'inference': 10.981559753417969, 'postprocess': 0.4284381866455078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  7,  0],
         [ 0,  5,  0],
         [ 0,  1,  1],
         ...,
         [ 0,  1,  0],
         [ 0,  2,  0],
         [ 0,  2,  0]],
 
        [[ 0,  7,  0],
         [ 0,  5,  0],
         [ 0,  0,  1],
         ...,
         [ 0,  1,  0],
         [ 0,  2,  0],
         [ 0,  2,  0]],
 
        [[ 0,  9,  0],
         [ 0,  4,  0],
         [ 0,  0,  1],
         ...,
         [ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0]],
 
        ...,
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [56, 65, 78],
         [56, 65, 78],
         [52, 61, 74]],
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [60, 69, 82],
         [58, 67, 80],
         [53, 62, 75]],
 
        [[ 0,  1,  0],
         [ 0,  1,  0],
         [ 0,  1,  0],
         ...,
         [57, 66, 79],
         [54, 63, 76],
         [47, 56, 69]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.2c59f391b25c97761914413f17802e9d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3914108276367188, 'inference': 15.093326568603516, 'postprocess': 0.7953643798828125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[7, 1, 0],
         [5, 0, 0],
         [4, 0, 4],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[7, 1, 0],
         [5, 0, 0],
         [4, 0, 4],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[7, 3, 0],
         [6, 1, 0],
         [4, 0, 4],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[2, 0, 3],
         [2, 0, 3],
         [0, 0, 3],
         ...,
         [0, 0, 0],
         [2, 0, 0],
         [2, 0, 0]],
 
        [[2, 0, 3],
         [2, 0, 3],
         [2, 0, 3],
         ...,
         [2, 0, 0],
         [2, 0, 0],
         [2, 0, 0]],
 
        [[2, 0, 3],
         [2, 0, 3],
         [2, 0, 3],
         ...,
         [3, 1, 1],
         [2, 0, 0],
         [6, 4, 4]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.5a0e8d02278b5430fa7bd514f437f041.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9044876098632812, 'inference': 9.987831115722656, 'postprocess': 0.3712177276611328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  5,   2,   0],
         [  5,   2,   0],
         [  3,   1,   0],
         ...,
         [ 93, 166,  74],
         [ 96, 164,  77],
         [100, 165,  79]],
 
        [[  5,   2,   0],
         [  5,   2,   0],
         [  3,   1,   0],
         ...,
         [ 82, 156,  66],
         [ 86, 153,  68],
         [ 91, 158,  73]],
 
        [[  5,   2,   0],
         [  5,   2,   0],
         [  3,   1,   0],
         ...,
         [ 65, 140,  54],
         [ 68, 135,  54],
         [ 69, 136,  55]],
 
        ...,
 
        [[ 66,  67,  77],
         [ 55,  56,  66],
         [ 53,  54,  64],
         ...,
         [ 59,  47,  47],
         [ 72,  60,  58],
         [ 60,  48,  46]],
 
        [[ 68,  69,  79],
         [ 58,  59,  69],
         [ 57,  58,  68],
         ...,
         [ 74,  62,  62],
         [ 93,  81,  79],
         [ 64,  52,  50]],
 
        [[ 65,  66,  76],
         [ 57,  58,  68],
         [ 55,  56,  66],
         ...,
         [ 85,  73,  73],
         [109,  97,  95],
         [ 78,  66,  64]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-64-_jpg.rf.9d88ef6a6cc16ef8eec9b1688a9d598e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4729499816894531, 'inference': 9.943008422851562, 'postprocess': 0.5059242248535156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[205, 246, 231],
         [218, 255, 242],
         [210, 246, 232],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        [[221, 254, 240],
         [219, 249, 236],
         [224, 250, 237],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        [[235, 249, 238],
         [228, 242, 231],
         [243, 252, 242],
         ...,
         [254, 254, 254],
         [254, 254, 254],
         [254, 254, 254]],
 
        ...,
 
        [[143, 160, 173],
         [148, 165, 178],
         [151, 167, 180],
         ...,
         [ 41,  42,  40],
         [ 20,  21,  19],
         [ 77,  78,  76]],
 
        [[147, 166, 181],
         [148, 164, 180],
         [150, 165, 181],
         ...,
         [ 63,  64,  62],
         [ 63,  64,  62],
         [ 79,  80,  78]],
 
        [[151, 170, 185],
         [155, 171, 187],
         [160, 175, 191],
         ...,
         [106, 107, 105],
         [ 97,  98,  96],
         [ 51,  52,  50]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.7fa7e133ba0c2210d5075b0795e6815d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.072572708129883, 'inference': 9.848594665527344, 'postprocess': 0.5488395690917969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.be4b7862a50c7fd0105a6a47ea0f48b9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.373291015625, 'inference': 9.76872444152832, 'postprocess': 0.3619194030761719},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        ...,
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]],
 
        [[28, 28, 28],
         [28, 28, 28],
         [28, 28, 28],
         ...,
         [28, 28, 28],
         [28, 28, 28],
         [28, 28, 28]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-65-_jpg.rf.e602ed35d690902722b26561dd3f9684.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.1991729736328125, 'inference': 13.613700866699219, 'postprocess': 0.3387928009033203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.2025b0c631dbf0d3277e7d8f95bbf6e8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0232200622558594, 'inference': 12.504816055297852, 'postprocess': 0.41604042053222656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[189, 202, 200],
         [189, 202, 200],
         [189, 202, 200],
         ...,
         [176, 187, 185],
         [176, 187, 184],
         [176, 187, 184]],
 
        [[190, 203, 201],
         [190, 203, 201],
         [189, 202, 200],
         ...,
         [176, 187, 185],
         [176, 187, 184],
         [175, 186, 183]],
 
        [[191, 204, 202],
         [191, 204, 202],
         [190, 203, 201],
         ...,
         [174, 187, 185],
         [176, 187, 185],
         [175, 186, 184]],
 
        ...,
 
        [[ 72,  81,  84],
         [ 75,  84,  87],
         [ 75,  84,  87],
         ...,
         [ 30,  36,  41],
         [ 30,  36,  41],
         [ 30,  36,  41]],
 
        [[ 61,  70,  73],
         [ 74,  83,  86],
         [ 82,  91,  94],
         ...,
         [ 30,  36,  41],
         [ 30,  36,  41],
         [ 30,  36,  41]],
 
        [[ 52,  61,  64],
         [ 74,  83,  86],
         [ 93, 102, 105],
         ...,
         [ 30,  36,  41],
         [ 30,  36,  41],
         [ 30,  36,  41]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.2d3138a80a414a75ab0117408153227b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3811588287353516, 'inference': 9.391069412231445, 'postprocess': 0.4298686981201172},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-66-_jpg.rf.ad992ba43ecdd6892307c96e01da1afa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8682479858398438, 'inference': 9.943723678588867, 'postprocess': 1.0807514190673828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.20cbf511ac305a699cd432846cbb264f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5878677368164062, 'inference': 9.801149368286133, 'postprocess': 0.4608631134033203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.23e729ce0e5380e419377888f247b0ec.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9457340240478516, 'inference': 9.41610336303711, 'postprocess': 0.39839744567871094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [133, 133, 133],
         [139, 139, 139],
         [148, 148, 148]],
 
        [[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [132, 132, 132],
         [134, 134, 134],
         [139, 139, 139]],
 
        [[  1,   1,   1],
         [  1,   1,   1],
         [  1,   1,   1],
         ...,
         [143, 143, 143],
         [142, 142, 142],
         [142, 142, 142]],
 
        ...,
 
        [[149, 145, 156],
         [140, 137, 146],
         [130, 127, 136],
         ...,
         [185, 193, 193],
         [144, 152, 152],
         [162, 170, 170]],
 
        [[142, 139, 148],
         [146, 143, 152],
         [148, 145, 154],
         ...,
         [194, 202, 202],
         [138, 146, 146],
         [187, 195, 195]],
 
        [[ 46,  43,  52],
         [ 65,  62,  71],
         [ 78,  76,  82],
         ...,
         [146, 154, 154],
         [177, 185, 185],
         [191, 199, 199]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-68-_jpg.rf.6d010af44edfa998adc338038f167ac6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8870830535888672, 'inference': 11.161565780639648, 'postprocess': 0.9021759033203125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.65c5742cced68822528a322492f2652d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.375436782836914, 'inference': 9.449005126953125, 'postprocess': 0.4673004150390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[157, 176, 159],
         [131, 153, 135],
         [ 87, 109,  91],
         ...,
         [206, 202, 201],
         [203, 202, 198],
         [215, 214, 210]],
 
        [[171, 193, 175],
         [128, 150, 132],
         [ 86, 110,  92],
         ...,
         [206, 202, 201],
         [204, 203, 199],
         [215, 214, 210]],
 
        [[183, 207, 189],
         [115, 141, 123],
         [ 72,  98,  80],
         ...,
         [210, 206, 205],
         [207, 206, 202],
         [214, 213, 209]],
 
        ...,
 
        [[ 79,  90, 118],
         [ 82,  93, 121],
         [ 81,  92, 120],
         ...,
         [112, 117, 142],
         [ 65,  71,  94],
         [ 67,  73,  96]],
 
        [[ 86,  97, 125],
         [ 79,  90, 118],
         [ 75,  86, 114],
         ...,
         [133, 138, 163],
         [ 80,  86, 109],
         [ 66,  72,  95]],
 
        [[ 91, 102, 130],
         [ 76,  87, 115],
         [ 65,  76, 104],
         ...,
         [137, 142, 167],
         [ 81,  87, 110],
         [ 56,  62,  85]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.7400b47430ca61631409d5ec433fbf79.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9404888153076172, 'inference': 10.370492935180664, 'postprocess': 0.39124488830566406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-7-_jpg.rf.75ec4611f8576a0f7706a3767986d5fa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4319419860839844, 'inference': 10.062217712402344, 'postprocess': 0.5114078521728516},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[151, 149, 155],
         [154, 152, 158],
         [154, 152, 158],
         ...,
         [132, 134, 144],
         [134, 136, 146],
         [138, 140, 150]],
 
        [[153, 151, 157],
         [158, 156, 162],
         [159, 157, 163],
         ...,
         [127, 129, 139],
         [131, 133, 143],
         [138, 140, 150]],
 
        [[148, 147, 151],
         [153, 152, 156],
         [155, 154, 158],
         ...,
         [130, 132, 142],
         [137, 139, 149],
         [148, 150, 160]],
 
        ...,
 
        [[ 89,  91,  92],
         [ 92,  94,  95],
         [ 96,  98,  99],
         ...,
         [119, 124, 133],
         [127, 132, 141],
         [111, 116, 125]],
 
        [[ 83,  85,  86],
         [ 84,  86,  87],
         [ 83,  85,  86],
         ...,
         [104, 109, 118],
         [107, 112, 121],
         [ 88,  93, 102]],
 
        [[ 83,  85,  86],
         [ 84,  86,  87],
         [ 82,  84,  85],
         ...,
         [ 90,  95, 104],
         [ 88,  93, 102],
         [ 85,  90,  99]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.3fa842cfa55b39d094c6e4be45aaf994.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8513202667236328, 'inference': 9.732484817504883, 'postprocess': 0.5712509155273438},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 1, 0],
         [0, 1, 0],
         [0, 1, 0],
         ...,
         [1, 1, 1],
         [0, 0, 0],
         [1, 1, 1]],
 
        [[1, 2, 0],
         [0, 1, 0],
         [0, 1, 0],
         ...,
         [1, 1, 1],
         [0, 0, 0],
         [1, 1, 1]],
 
        [[3, 3, 3],
         [2, 3, 1],
         [0, 0, 0],
         ...,
         [1, 1, 1],
         [0, 0, 0],
         [1, 1, 1]],
 
        ...,
 
        [[4, 0, 0],
         [4, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[4, 0, 0],
         [4, 0, 0],
         [2, 0, 0],
         ...,
         [2, 2, 2],
         [1, 1, 1],
         [0, 0, 0]],
 
        [[4, 0, 0],
         [4, 0, 0],
         [2, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.4bee9afd2a93c4eec1a251f641521c4c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4367103576660156, 'inference': 9.685754776000977, 'postprocess': 0.35071372985839844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[98, 98, 98],
         [98, 98, 98],
         [98, 98, 98],
         ...,
         [98, 98, 98],
         [98, 98, 98],
         [98, 98, 98]],
 
        [[98, 98, 98],
         [98, 98, 98],
         [98, 98, 98],
         ...,
         [98, 98, 98],
         [98, 98, 98],
         [98, 98, 98]],
 
        [[98, 98, 98],
         [98, 98, 98],
         [98, 98, 98],
         ...,
         [98, 98, 98],
         [98, 98, 98],
         [98, 98, 98]],
 
        ...,
 
        [[98, 98, 98],
         [98, 98, 98],
         [98, 98, 98],
         ...,
         [98, 98, 98],
         [98, 98, 98],
         [98, 98, 98]],
 
        [[98, 98, 98],
         [98, 98, 98],
         [98, 98, 98],
         ...,
         [98, 98, 98],
         [98, 98, 98],
         [98, 98, 98]],
 
        [[98, 98, 98],
         [98, 98, 98],
         [98, 98, 98],
         ...,
         [98, 98, 98],
         [98, 98, 98],
         [98, 98, 98]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-70-_jpg.rf.be12246c53c37bcff9d671a1052b23bb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9211769104003906, 'inference': 9.207725524902344, 'postprocess': 0.3256797790527344},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.0f9bcdab2065fee694fefca6af561329.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7511844635009766, 'inference': 9.901762008666992, 'postprocess': 0.22745132446289062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.c09149434e1578a21379b1ec049c97e2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4564990997314453, 'inference': 14.289379119873047, 'postprocess': 0.4591941833496094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[27, 27, 27],
         [ 6,  6,  6],
         [12, 12, 12],
         ...,
         [29, 40, 44],
         [18, 29, 33],
         [ 2, 13, 17]],
 
        [[27, 27, 27],
         [ 6,  6,  6],
         [12, 12, 12],
         ...,
         [12, 23, 27],
         [13, 24, 28],
         [16, 27, 31]],
 
        [[27, 27, 27],
         [ 6,  6,  6],
         [12, 12, 12],
         ...,
         [ 2, 13, 17],
         [ 7, 18, 22],
         [19, 30, 34]],
 
        ...,
 
        [[27, 29, 30],
         [23, 25, 26],
         [17, 19, 20],
         ...,
         [13, 15, 15],
         [10, 12, 12],
         [ 8, 10, 10]],
 
        [[25, 27, 28],
         [20, 22, 23],
         [12, 14, 15],
         ...,
         [14, 16, 16],
         [ 9, 11, 11],
         [ 6,  8,  8]],
 
        [[23, 25, 26],
         [18, 20, 21],
         [ 9, 11, 12],
         ...,
         [15, 17, 17],
         [ 9, 11, 11],
         [ 4,  6,  6]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-71-_jpg.rf.dd6b8e67c19a5c53bb6f91b55e593a13.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8284320831298828, 'inference': 9.290218353271484, 'postprocess': 0.3695487976074219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.00116918149ac51697ae5249644ef144.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3625621795654297, 'inference': 10.03718376159668, 'postprocess': 0.522613525390625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.08280c0eeb6772c510479ba1a84a6778.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7704963684082031, 'inference': 10.91146469116211, 'postprocess': 0.5114078521728516},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[33, 38, 39],
         [49, 54, 55],
         [25, 30, 31],
         ...,
         [26, 28, 28],
         [24, 26, 26],
         [19, 21, 21]],
 
        [[41, 46, 47],
         [46, 51, 52],
         [24, 29, 30],
         ...,
         [24, 26, 26],
         [26, 28, 28],
         [25, 27, 27]],
 
        [[44, 49, 50],
         [37, 42, 43],
         [23, 28, 29],
         ...,
         [26, 28, 28],
         [26, 28, 28],
         [28, 30, 30]],
 
        ...,
 
        [[12, 14, 15],
         [14, 16, 17],
         [13, 15, 16],
         ...,
         [21, 23, 23],
         [19, 21, 21],
         [18, 20, 20]],
 
        [[10, 12, 13],
         [ 8, 10, 11],
         [ 8, 10, 11],
         ...,
         [22, 24, 24],
         [20, 22, 22],
         [18, 20, 20]],
 
        [[11, 13, 14],
         [ 6,  8,  9],
         [ 6,  8,  9],
         ...,
         [23, 25, 25],
         [20, 22, 22],
         [18, 20, 20]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-73-_jpg.rf.30b9fb02402e11d9d73579c9c007e6f1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9137859344482422, 'inference': 9.727001190185547, 'postprocess': 0.5133152008056641},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[25, 25, 25],
         [25, 25, 25],
         [25, 25, 25],
         ...,
         [25, 25, 25],
         [25, 25, 25],
         [25, 25, 25]],
 
        [[25, 25, 25],
         [25, 25, 25],
         [25, 25, 25],
         ...,
         [25, 25, 25],
         [25, 25, 25],
         [25, 25, 25]],
 
        [[25, 25, 25],
         [25, 25, 25],
         [25, 25, 25],
         ...,
         [25, 25, 25],
         [25, 25, 25],
         [25, 25, 25]],
 
        ...,
 
        [[25, 25, 25],
         [25, 25, 25],
         [25, 25, 25],
         ...,
         [25, 25, 25],
         [25, 25, 25],
         [25, 25, 25]],
 
        [[25, 25, 25],
         [25, 25, 25],
         [25, 25, 25],
         ...,
         [25, 25, 25],
         [25, 25, 25],
         [25, 25, 25]],
 
        [[25, 25, 25],
         [25, 25, 25],
         [25, 25, 25],
         ...,
         [25, 25, 25],
         [25, 25, 25],
         [25, 25, 25]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.16da87d5105f997141b5538f74203204.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3148784637451172, 'inference': 9.76252555847168, 'postprocess': 0.7274150848388672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[214, 202, 198],
         [215, 203, 199],
         [215, 203, 199],
         ...,
         [219, 207, 203],
         [215, 203, 199],
         [210, 198, 194]],
 
        [[215, 203, 199],
         [215, 203, 199],
         [215, 203, 199],
         ...,
         [217, 205, 201],
         [215, 203, 199],
         [210, 198, 194]],
 
        [[216, 204, 200],
         [215, 203, 199],
         [214, 202, 198],
         ...,
         [213, 201, 197],
         [213, 201, 197],
         [211, 199, 195]],
 
        ...,
 
        [[174, 162, 162],
         [174, 162, 162],
         [174, 162, 162],
         ...,
         [169, 162, 159],
         [174, 167, 164],
         [177, 170, 167]],
 
        [[184, 172, 172],
         [184, 172, 172],
         [183, 171, 171],
         ...,
         [166, 159, 156],
         [173, 166, 163],
         [177, 170, 167]],
 
        [[188, 176, 176],
         [188, 176, 176],
         [186, 174, 174],
         ...,
         [164, 157, 154],
         [172, 165, 162],
         [176, 169, 166]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.4599969de001cd1935d28ed812d1dd90.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9772052764892578, 'inference': 10.11037826538086, 'postprocess': 0.64849853515625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 2, 2],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [6, 4, 4],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [7, 5, 5],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-74-_jpg.rf.753bab7893e8644b71fea76010278698.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4204978942871094, 'inference': 9.479999542236328, 'postprocess': 0.5490779876708984},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.01e2ff81bb8754692afe9b2bb2fda48a.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9612312316894531, 'inference': 9.662628173828125, 'postprocess': 0.5638599395751953},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[140, 140, 140],
         [140, 140, 140],
         [140, 140, 140],
         ...,
         [140, 137, 139],
         [139, 136, 138],
         [137, 134, 136]],
 
        [[140, 140, 140],
         [140, 140, 140],
         [140, 140, 140],
         ...,
         [146, 143, 145],
         [147, 144, 146],
         [146, 143, 145]],
 
        [[140, 140, 140],
         [140, 140, 140],
         [140, 140, 140],
         ...,
         [149, 146, 148],
         [148, 145, 147],
         [148, 145, 147]],
 
        ...,
 
        [[140, 140, 140],
         [140, 140, 140],
         [140, 140, 140],
         ...,
         [140, 140, 140],
         [140, 140, 140],
         [140, 140, 140]],
 
        [[140, 140, 140],
         [140, 140, 140],
         [140, 140, 140],
         ...,
         [140, 140, 140],
         [140, 140, 140],
         [140, 140, 140]],
 
        [[140, 140, 140],
         [140, 140, 140],
         [140, 140, 140],
         ...,
         [140, 140, 140],
         [140, 140, 140],
         [140, 140, 140]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.a4fb54bd2e21373bc7b34ffadb02d9eb.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3651847839355469, 'inference': 9.716033935546875, 'postprocess': 0.5199909210205078},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[138, 137, 139],
         [136, 135, 137],
         [138, 137, 139],
         ...,
         [159, 154, 151],
         [148, 143, 140],
         [130, 125, 122]],
 
        [[134, 133, 135],
         [133, 132, 134],
         [135, 134, 136],
         ...,
         [153, 148, 145],
         [148, 143, 140],
         [135, 130, 127]],
 
        [[146, 145, 147],
         [148, 147, 149],
         [153, 152, 154],
         ...,
         [149, 144, 141],
         [157, 152, 149],
         [155, 150, 147]],
 
        ...,
 
        [[161, 161, 161],
         [161, 161, 161],
         [155, 155, 155],
         ...,
         [192, 191, 193],
         [173, 172, 174],
         [160, 159, 161]],
 
        [[141, 141, 141],
         [146, 146, 146],
         [146, 146, 146],
         ...,
         [208, 207, 209],
         [199, 198, 200],
         [187, 186, 188]],
 
        [[144, 144, 144],
         [150, 150, 150],
         [149, 149, 149],
         ...,
         [211, 210, 212],
         [200, 199, 201],
         [181, 180, 182]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-75-_jpg.rf.f73e19df2feadf86dbc38f4eb690d204.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0580291748046875, 'inference': 9.330272674560547, 'postprocess': 0.5271434783935547},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.3908b60fc10504b5de5ceb2ba0cddcb1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7163753509521484, 'inference': 9.786367416381836, 'postprocess': 0.3554821014404297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[186, 187, 185],
         [186, 187, 185],
         [186, 187, 185],
         ...,
         [ 39,  44,  43],
         [ 36,  41,  40],
         [ 31,  36,  35]],
 
        [[186, 187, 185],
         [186, 187, 185],
         [185, 186, 184],
         ...,
         [ 41,  46,  45],
         [ 38,  43,  42],
         [ 33,  38,  37]],
 
        [[185, 186, 184],
         [185, 186, 184],
         [185, 186, 184],
         ...,
         [ 44,  49,  48],
         [ 42,  47,  46],
         [ 38,  43,  42]],
 
        ...,
 
        [[112, 116, 117],
         [130, 134, 135],
         [119, 123, 124],
         ...,
         [163, 165, 165],
         [153, 155, 156],
         [142, 144, 145]],
 
        [[ 97, 101, 102],
         [119, 123, 124],
         [113, 117, 118],
         ...,
         [137, 139, 139],
         [138, 140, 141],
         [155, 157, 158]],
 
        [[ 93,  97,  98],
         [115, 119, 120],
         [112, 116, 117],
         ...,
         [123, 125, 125],
         [128, 130, 131],
         [167, 169, 170]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.4062413067c04acc387e651210b12921.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3875961303710938, 'inference': 9.947061538696289, 'postprocess': 0.4856586456298828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  6,   8,   9],
         [  5,   7,   8],
         [  5,   7,   8],
         ...,
         [  3,   6,   4],
         [  7,  10,   8],
         [  5,   8,   6]],
 
        [[ 10,  12,  13],
         [  9,  11,  12],
         [  9,  11,  12],
         ...,
         [  3,   6,   4],
         [  7,  10,   8],
         [  5,   8,   6]],
 
        [[  4,   6,   7],
         [  4,   6,   7],
         [  3,   5,   6],
         ...,
         [  3,   6,   4],
         [  6,   9,   7],
         [  5,   8,   6]],
 
        ...,
 
        [[188, 196, 185],
         [180, 188, 177],
         [157, 162, 153],
         ...,
         [  8,   8,   8],
         [  8,   8,   8],
         [  8,   8,   8]],
 
        [[182, 191, 178],
         [180, 189, 176],
         [162, 168, 157],
         ...,
         [  8,   8,   8],
         [  8,   8,   8],
         [  8,   8,   8]],
 
        [[129, 138, 125],
         [136, 145, 132],
         [128, 134, 123],
         ...,
         [  8,   8,   8],
         [  8,   8,   8],
         [  8,   8,   8]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-76-_jpg.rf.72e4e540e160870c4756c500e80e40b1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9865036010742188, 'inference': 12.44211196899414, 'postprocess': 0.37407875061035156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        ...,
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]],
 
        [[52, 52, 52],
         [52, 52, 52],
         [52, 52, 52],
         ...,
         [52, 52, 52],
         [52, 52, 52],
         [52, 52, 52]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.5d2577e0f9e471d4b9dcfce00a96d034.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3871192932128906, 'inference': 10.12873649597168, 'postprocess': 0.42700767517089844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.61a63f92522c3558c8dc33ecae183ed2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9381046295166016, 'inference': 10.36834716796875, 'postprocess': 0.7185935974121094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[211, 207, 206],
         [205, 201, 200],
         [203, 199, 198],
         ...,
         [205, 200, 199],
         [216, 211, 210],
         [233, 228, 227]],
 
        [[203, 199, 198],
         [201, 197, 196],
         [203, 199, 198],
         ...,
         [212, 207, 206],
         [217, 212, 211],
         [235, 230, 229]],
 
        [[210, 206, 205],
         [210, 206, 205],
         [212, 208, 207],
         ...,
         [217, 212, 211],
         [216, 211, 210],
         [230, 225, 224]],
 
        ...,
 
        [[161, 167, 162],
         [178, 184, 179],
         [179, 183, 178],
         ...,
         [139, 131, 124],
         [160, 152, 145],
         [180, 172, 165]],
 
        [[187, 193, 188],
         [178, 184, 179],
         [192, 196, 191],
         ...,
         [107,  99,  92],
         [143, 135, 128],
         [169, 161, 154]],
 
        [[199, 205, 200],
         [171, 177, 172],
         [192, 196, 191],
         ...,
         [104,  96,  89],
         [142, 134, 127],
         [166, 158, 151]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-77-_jpg.rf.83c80a807ca47eb0192cb129ebc8cb41.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0203590393066406, 'inference': 9.635686874389648, 'postprocess': 0.3600120544433594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.51b8d15858f724437e1ce83b1f7a76a0.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5556812286376953, 'inference': 9.996891021728516, 'postprocess': 0.4220008850097656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        ...,
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]],
 
        [[1, 1, 1],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [1, 1, 1],
         [1, 1, 1],
         [1, 1, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.6e55ada23b1148608d6daddc7d6d7e27.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.924276351928711, 'inference': 10.819673538208008, 'postprocess': 0.4425048828125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[254, 245, 242],
         [253, 244, 241],
         [231, 222, 219],
         ...,
         [ 53,  36,  45],
         [ 56,  39,  48],
         [ 55,  38,  47]],
 
        [[255, 250, 247],
         [255, 249, 246],
         [236, 227, 224],
         ...,
         [ 54,  37,  46],
         [ 58,  41,  50],
         [ 57,  40,  49]],
 
        [[252, 243, 240],
         [251, 242, 239],
         [230, 221, 218],
         ...,
         [ 51,  34,  43],
         [ 55,  38,  47],
         [ 54,  37,  46]],
 
        ...,
 
        [[140, 134, 139],
         [135, 129, 134],
         [130, 124, 129],
         ...,
         [141, 134, 139],
         [121, 114, 119],
         [127, 120, 125]],
 
        [[141, 134, 141],
         [136, 129, 136],
         [131, 124, 131],
         ...,
         [142, 135, 140],
         [125, 118, 123],
         [132, 125, 130]],
 
        [[139, 132, 139],
         [134, 127, 134],
         [129, 122, 129],
         ...,
         [139, 132, 137],
         [122, 115, 120],
         [129, 122, 127]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-78-_jpg.rf.a51a0e1d7624e72d7257934cefd3d410.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4858245849609375, 'inference': 9.925603866577148, 'postprocess': 0.3790855407714844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[202, 212, 222],
         [202, 212, 222],
         [203, 213, 223],
         ...,
         [132, 141, 155],
         [125, 134, 148],
         [130, 139, 153]],
 
        [[202, 212, 222],
         [202, 212, 222],
         [203, 213, 223],
         ...,
         [133, 142, 156],
         [126, 135, 149],
         [130, 139, 153]],
 
        [[198, 208, 218],
         [199, 209, 219],
         [199, 209, 219],
         ...,
         [132, 141, 155],
         [126, 135, 149],
         [130, 139, 153]],
 
        ...,
 
        [[185, 197, 201],
         [185, 197, 201],
         [183, 195, 201],
         ...,
         [181, 193, 195],
         [180, 192, 194],
         [179, 191, 193]],
 
        [[185, 197, 201],
         [184, 196, 200],
         [182, 194, 198],
         ...,
         [180, 192, 194],
         [179, 191, 191],
         [178, 190, 190]],
 
        [[186, 198, 202],
         [185, 197, 201],
         [183, 195, 199],
         ...,
         [180, 192, 194],
         [179, 191, 191],
         [177, 189, 189]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.b8083f42dac8ce2a5d303479dc967792.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8591880798339844, 'inference': 9.431838989257812, 'postprocess': 0.4253387451171875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 12, 13],
         [10, 12, 13],
         [12, 12, 12],
         ...,
         [10, 12, 13],
         [10, 12, 13],
         [10, 12, 13]],
 
        [[10, 12, 13],
         [10, 12, 13],
         [12, 12, 12],
         ...,
         [10, 12, 13],
         [10, 12, 13],
         [10, 12, 13]],
 
        [[10, 12, 13],
         [10, 12, 13],
         [12, 12, 12],
         ...,
         [12, 12, 12],
         [12, 12, 12],
         [12, 12, 12]],
 
        ...,
 
        [[14, 12, 12],
         [14, 12, 12],
         [14, 12, 12],
         ...,
         [12, 12, 12],
         [10, 12, 13],
         [10, 12, 13]],
 
        [[14, 12, 12],
         [14, 12, 12],
         [14, 12, 12],
         ...,
         [12, 12, 12],
         [10, 12, 13],
         [10, 12, 13]],
 
        [[14, 12, 12],
         [14, 12, 12],
         [14, 12, 12],
         ...,
         [12, 12, 12],
         [10, 12, 13],
         [10, 12, 13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.be47d8798d6f806389366b2c6e3a3dd1.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.89971923828125, 'inference': 9.937763214111328, 'postprocess': 0.8420944213867188},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[57, 57, 57],
         [57, 57, 57],
         [57, 57, 57],
         ...,
         [57, 57, 57],
         [57, 57, 57],
         [57, 57, 57]],
 
        [[57, 57, 57],
         [57, 57, 57],
         [57, 57, 57],
         ...,
         [57, 57, 57],
         [57, 57, 57],
         [57, 57, 57]],
 
        [[57, 57, 57],
         [57, 57, 57],
         [57, 57, 57],
         ...,
         [57, 57, 57],
         [57, 57, 57],
         [57, 57, 57]],
 
        ...,
 
        [[57, 57, 57],
         [57, 57, 57],
         [57, 57, 57],
         ...,
         [57, 57, 57],
         [57, 57, 57],
         [57, 57, 57]],
 
        [[57, 57, 57],
         [57, 57, 57],
         [57, 57, 57],
         ...,
         [57, 57, 57],
         [57, 57, 57],
         [57, 57, 57]],
 
        [[57, 57, 57],
         [57, 57, 57],
         [57, 57, 57],
         ...,
         [57, 57, 57],
         [57, 57, 57],
         [57, 57, 57]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-79-_jpg.rf.fa63c47cf0aa776aec75efb4df84f724.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4612674713134766, 'inference': 9.617328643798828, 'postprocess': 0.3972053527832031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        ...,
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.22de640e2560bddb13ff49abfccbc8d6.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7275810241699219, 'inference': 10.302543640136719, 'postprocess': 0.81634521484375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[152, 164, 166],
         [204, 216, 218],
         [ 98, 110, 112],
         ...,
         [192, 197, 206],
         [193, 198, 207],
         [193, 198, 207]],
 
        [[ 91, 103, 105],
         [111, 123, 125],
         [ 93, 105, 107],
         ...,
         [192, 197, 206],
         [192, 197, 206],
         [192, 197, 206]],
 
        [[ 63,  75,  77],
         [ 80,  92,  94],
         [148, 160, 162],
         ...,
         [182, 187, 196],
         [185, 190, 199],
         [186, 191, 200]],
 
        ...,
 
        [[ 42,  59,  68],
         [ 44,  61,  70],
         [ 29,  46,  55],
         ...,
         [ 28,  45,  54],
         [ 42,  59,  68],
         [ 60,  77,  86]],
 
        [[ 46,  63,  72],
         [ 54,  71,  80],
         [ 39,  56,  65],
         ...,
         [ 59,  76,  85],
         [ 61,  78,  87],
         [ 64,  81,  90]],
 
        [[ 44,  61,  70],
         [ 23,  40,  49],
         [ 33,  50,  59],
         ...,
         [ 89, 106, 115],
         [113, 130, 139],
         [102, 119, 128]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.b4762871ab415292cd35f6ee6e2059a5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.141714096069336, 'inference': 11.175870895385742, 'postprocess': 0.6608963012695312},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-8-_jpg.rf.f2cd6b29cbaf9efb1f836b4c78aca3f9.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8773078918457031, 'inference': 9.948015213012695, 'postprocess': 0.49376487731933594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.8988aa50fb872401bc29ab7830281e22.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5420913696289062, 'inference': 9.607315063476562, 'postprocess': 0.4017353057861328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0, 106, 122],
         [  0, 104, 120],
         [ 91, 200, 214],
         ...,
         [ 30,  63,  42],
         [  2,  38,  16],
         [ 19,  55,  33]],
 
        [[  9, 120, 136],
         [ 21, 133, 146],
         [ 69, 178, 192],
         ...,
         [ 24,  57,  36],
         [ 26,  59,  38],
         [ 11,  47,  25]],
 
        [[ 38, 150, 163],
         [ 44, 156, 168],
         [ 34, 144, 156],
         ...,
         [  5,  38,  17],
         [ 31,  64,  43],
         [  0,  30,   9]],
 
        ...,
 
        [[ 83, 103, 114],
         [ 77,  97, 108],
         [129, 149, 160],
         ...,
         [130, 155, 187],
         [111, 137, 173],
         [ 76, 102, 138]],
 
        [[ 91, 110, 123],
         [143, 162, 175],
         [147, 166, 179],
         ...,
         [109, 134, 166],
         [ 98, 122, 158],
         [ 92, 116, 152]],
 
        [[102, 121, 134],
         [175, 194, 207],
         [148, 167, 180],
         ...,
         [ 93, 118, 150],
         [ 94, 118, 154],
         [ 79, 103, 139]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.d08231a7b3ed0079786a5cc588acb6a8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.007722854614258, 'inference': 9.71841812133789, 'postprocess': 0.43010711669921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-80-_jpg.rf.e5fc6c140371201fb051fc7100769b0b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9185543060302734, 'inference': 9.91368293762207, 'postprocess': 0.392913818359375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.2c871f142112a2de4e78f5730d77bf73.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.47247314453125, 'inference': 10.12277603149414, 'postprocess': 0.4551410675048828},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[145, 140, 137],
         [147, 142, 139],
         [149, 144, 141],
         ...,
         [ 36,  44,  57],
         [ 35,  43,  56],
         [ 29,  37,  50]],
 
        [[143, 138, 135],
         [145, 140, 137],
         [147, 142, 139],
         ...,
         [ 22,  30,  43],
         [ 23,  31,  44],
         [ 18,  26,  39]],
 
        [[141, 136, 133],
         [143, 138, 135],
         [146, 141, 138],
         ...,
         [ 14,  22,  35],
         [ 17,  25,  38],
         [ 15,  23,  36]],
 
        ...,
 
        [[180, 189, 202],
         [179, 188, 198],
         [170, 176, 187],
         ...,
         [168, 158, 164],
         [158, 148, 154],
         [137, 127, 133]],
 
        [[148, 159, 173],
         [145, 157, 169],
         [138, 147, 160],
         ...,
         [163, 148, 152],
         [162, 147, 151],
         [140, 125, 129]],
 
        [[123, 136, 150],
         [118, 131, 145],
         [113, 122, 136],
         ...,
         [134, 117, 121],
         [150, 130, 135],
         [138, 118, 123]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.682981671ea574a72479e1763164f07b.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8763542175292969, 'inference': 10.189056396484375, 'postprocess': 0.4286766052246094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 1],
         [0, 2, 3],
         [0, 1, 2]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 1],
         [0, 2, 3],
         [0, 0, 1]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 1, 2],
         [0, 1, 2],
         [0, 0, 1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-81-_jpg.rf.f826102d59ca692fc6a7cd93131a448e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4545917510986328, 'inference': 9.744882583618164, 'postprocess': 0.38552284240722656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.24e5bbbd60206e18fc16880bfeaad9aa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8012523651123047, 'inference': 9.874105453491211, 'postprocess': 0.4329681396484375},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[219, 214, 199],
         [224, 219, 204],
         [221, 217, 206],
         ...,
         [ 32,  41,  54],
         [ 36,  44,  57],
         [ 38,  46,  59]],
 
        [[218, 213, 198],
         [221, 218, 204],
         [222, 218, 207],
         ...,
         [ 30,  39,  52],
         [ 34,  42,  55],
         [ 36,  44,  57]],
 
        [[216, 213, 199],
         [219, 216, 202],
         [220, 216, 205],
         ...,
         [ 28,  38,  48],
         [ 33,  41,  54],
         [ 35,  43,  56]],
 
        ...,
 
        [[ 70,  92, 117],
         [ 69,  91, 116],
         [ 66,  90, 114],
         ...,
         [116, 122, 129],
         [110, 116, 123],
         [112, 118, 125]],
 
        [[ 70,  92, 117],
         [ 70,  92, 117],
         [ 69,  93, 117],
         ...,
         [121, 127, 134],
         [104, 110, 117],
         [111, 117, 124]],
 
        [[ 68,  90, 115],
         [ 69,  91, 116],
         [ 70,  94, 118],
         ...,
         [127, 133, 140],
         [104, 110, 117],
         [116, 122, 129]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.96fb5070300f4d0838ba9d84df193cb3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9474029541015625, 'inference': 9.982585906982422, 'postprocess': 0.5490779876708984},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        ...,
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]],
 
        [[114, 114, 114],
         [114, 114, 114],
         [114, 114, 114],
         ...,
         [114, 114, 114],
         [114, 114, 114],
         [114, 114, 114]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-82-_jpg.rf.cdb1fbbb88686147ca6fd7393e9a1053.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.374959945678711, 'inference': 9.909629821777344, 'postprocess': 0.3705024719238281},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[16, 16, 16],
         [16, 16, 16],
         [16, 16, 16],
         ...,
         [16, 16, 16],
         [16, 16, 16],
         [16, 16, 16]],
 
        [[16, 16, 16],
         [16, 16, 16],
         [16, 16, 16],
         ...,
         [16, 16, 16],
         [16, 16, 16],
         [16, 16, 16]],
 
        [[16, 16, 16],
         [16, 16, 16],
         [16, 16, 16],
         ...,
         [16, 16, 16],
         [16, 16, 16],
         [16, 16, 16]],
 
        ...,
 
        [[16, 16, 16],
         [16, 16, 16],
         [16, 16, 16],
         ...,
         [16, 16, 16],
         [16, 16, 16],
         [16, 16, 16]],
 
        [[16, 16, 16],
         [16, 16, 16],
         [16, 16, 16],
         ...,
         [16, 16, 16],
         [16, 16, 16],
         [16, 16, 16]],
 
        [[16, 16, 16],
         [16, 16, 16],
         [16, 16, 16],
         ...,
         [16, 16, 16],
         [16, 16, 16],
         [16, 16, 16]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.6067035f09c5b1b4a82debfac50b8b68.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8017292022705078, 'inference': 9.833097457885742, 'postprocess': 1.5048980712890625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        ...,
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]],
 
        [[10, 10, 10],
         [10, 10, 10],
         [10, 10, 10],
         ...,
         [10, 10, 10],
         [10, 10, 10],
         [10, 10, 10]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.658f94a0e7d008ff38e85a627d6f699e.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4712810516357422, 'inference': 12.634038925170898, 'postprocess': 0.4000663757324219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[145, 130, 127],
         [136, 121, 118],
         [124, 109, 106],
         ...,
         [123, 109, 110],
         [100,  86,  87],
         [ 76,  62,  63]],
 
        [[128, 113, 110],
         [125, 110, 107],
         [120, 105, 102],
         ...,
         [129, 115, 116],
         [112,  98,  99],
         [ 93,  79,  80]],
 
        [[116, 101,  98],
         [121, 106, 103],
         [123, 108, 105],
         ...,
         [134, 120, 121],
         [126, 112, 113],
         [117, 103, 104]],
 
        ...,
 
        [[136, 119, 116],
         [125, 108, 105],
         [110,  93,  90],
         ...,
         [147, 134, 132],
         [150, 137, 135],
         [140, 127, 125]],
 
        [[129, 112, 109],
         [134, 117, 114],
         [121, 104, 101],
         ...,
         [123, 108, 105],
         [132, 117, 114],
         [136, 121, 118]],
 
        [[112,  95,  92],
         [151, 134, 131],
         [139, 122, 119],
         ...,
         [ 99,  84,  81],
         [113,  98,  95],
         [128, 113, 110]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-83-_jpg.rf.8d1e38d4c07d51717c500ae1145d7108.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7771720886230469, 'inference': 8.980274200439453, 'postprocess': 0.4582405090332031},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        ...,
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.79ea02211ed732335af4650b0977b9ad.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.714468002319336, 'inference': 8.939981460571289, 'postprocess': 0.39887428283691406},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[239, 242, 193],
         [245, 248, 199],
         [250, 253, 204],
         ...,
         [174, 138,  84],
         [173, 137,  83],
         [173, 137,  83]],
 
        [[239, 242, 193],
         [244, 247, 198],
         [247, 250, 201],
         ...,
         [173, 137,  83],
         [172, 136,  82],
         [171, 135,  81]],
 
        [[238, 241, 192],
         [241, 244, 195],
         [243, 246, 197],
         ...,
         [171, 135,  81],
         [170, 134,  80],
         [169, 133,  79]],
 
        ...,
 
        [[160, 133,  96],
         [164, 137, 100],
         [164, 138,  98],
         ...,
         [159, 117,  70],
         [153, 111,  64],
         [152, 110,  63]],
 
        [[164, 137, 100],
         [165, 138, 101],
         [161, 134,  97],
         ...,
         [156, 114,  67],
         [147, 105,  58],
         [147, 105,  58]],
 
        [[166, 139, 102],
         [165, 138, 101],
         [158, 131,  94],
         ...,
         [151, 109,  62],
         [144, 102,  55],
         [148, 106,  59]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.875df442d5750a19dce18e532e06b8fe.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.890420913696289, 'inference': 10.019063949584961, 'postprocess': 0.3685951232910156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-84-_jpg.rf.f2555c00b7ca574dd2f6b119f2849651.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.837015151977539, 'inference': 10.18381118774414, 'postprocess': 0.5116462707519531},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[31, 34, 32],
         [19, 22, 20],
         [30, 33, 31],
         ...,
         [25, 25, 25],
         [38, 38, 38],
         [29, 29, 29]],
 
        [[26, 29, 27],
         [31, 34, 32],
         [31, 34, 32],
         ...,
         [26, 26, 26],
         [37, 37, 37],
         [29, 29, 29]],
 
        [[31, 33, 33],
         [34, 36, 36],
         [31, 33, 33],
         ...,
         [28, 28, 28],
         [35, 35, 35],
         [29, 29, 29]],
 
        ...,
 
        [[33, 31, 31],
         [42, 40, 40],
         [56, 54, 54],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[31, 29, 29],
         [52, 50, 50],
         [59, 57, 57],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]],
 
        [[33, 31, 31],
         [60, 58, 58],
         [61, 59, 59],
         ...,
         [31, 31, 31],
         [31, 31, 31],
         [31, 31, 31]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.02b3ed7783bfa794dcb56d483821c20c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6143321990966797, 'inference': 10.589122772216797, 'postprocess': 0.37169456481933594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        ...,
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]],
 
        [[87, 87, 87],
         [87, 87, 87],
         [87, 87, 87],
         ...,
         [87, 87, 87],
         [87, 87, 87],
         [87, 87, 87]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.a64446b223ce0bba88626d3b9688cb5f.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9159317016601562, 'inference': 14.973878860473633, 'postprocess': 0.8478164672851562},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[192, 183, 174],
         [203, 194, 185],
         [212, 203, 194],
         ...,
         [ 76,  94, 111],
         [ 52,  72,  90],
         [ 61,  81,  99]],
 
        [[ 95,  86,  77],
         [115, 106,  97],
         [146, 137, 128],
         ...,
         [ 61,  79,  96],
         [ 70,  87, 106],
         [103, 123, 141]],
 
        [[ 71,  62,  53],
         [ 86,  77,  68],
         [100,  91,  82],
         ...,
         [ 76,  93, 112],
         [139, 156, 175],
         [ 93, 110, 129]],
 
        ...,
 
        [[169, 173, 178],
         [152, 156, 161],
         [ 63,  67,  72],
         ...,
         [ 47,  45,  45],
         [ 25,  23,  23],
         [ 74,  72,  72]],
 
        [[ 62,  66,  71],
         [  2,   6,  11],
         [109, 113, 118],
         ...,
         [ 49,  47,  47],
         [ 43,  41,  41],
         [ 49,  47,  47]],
 
        [[  4,   8,  13],
         [ 72,  76,  81],
         [187, 191, 196],
         ...,
         [ 22,  20,  20],
         [ 45,  43,  43],
         [ 27,  25,  25]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-85-_jpg.rf.c5fc2aff67696bb00ec93f0e00d6b41d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.51824951171875, 'inference': 9.46664810180664, 'postprocess': 0.3981590270996094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        ...,
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]],
 
        [[40, 40, 40],
         [40, 40, 40],
         [40, 40, 40],
         ...,
         [40, 40, 40],
         [40, 40, 40],
         [40, 40, 40]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-86-_jpg.rf.6ba43a8fea8b523c5647b5148ccc4c48.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7740726470947266, 'inference': 9.86337661743164, 'postprocess': 0.8413791656494141},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-86-_jpg.rf.c7c369033df047926786fd0bbc131cf5.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8742084503173828, 'inference': 9.26351547241211, 'postprocess': 0.8058547973632812},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[122, 121, 101],
         [135, 134, 114],
         [126, 127, 107],
         ...,
         [124, 118, 119],
         [120, 115, 116],
         [120, 115, 116]],
 
        [[137, 136, 116],
         [143, 142, 122],
         [132, 133, 113],
         ...,
         [122, 116, 117],
         [118, 113, 114],
         [118, 113, 114]],
 
        [[145, 144, 124],
         [146, 145, 125],
         [139, 138, 118],
         ...,
         [119, 114, 115],
         [116, 111, 112],
         [115, 110, 111]],
 
        ...,
 
        [[150, 150, 168],
         [141, 141, 159],
         [125, 126, 146],
         ...,
         [119, 120, 118],
         [ 98,  99,  97],
         [ 94,  95,  93]],
 
        [[148, 148, 166],
         [150, 150, 168],
         [140, 141, 161],
         ...,
         [102, 103,  99],
         [ 85,  86,  82],
         [ 77,  78,  74]],
 
        [[143, 143, 161],
         [143, 143, 161],
         [147, 148, 168],
         ...,
         [ 75,  76,  72],
         [ 71,  72,  68],
         [ 74,  75,  71]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-86-_jpg.rf.fe15af9f424efc111e4bab1ead9b76cc.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3849735260009766, 'inference': 10.149478912353516, 'postprocess': 0.6117820739746094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[2, 0, 0],
         [2, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[2, 0, 0],
         [2, 0, 0],
         [0, 0, 1],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-87-_jpg.rf.071c1cfadf7d9959341091d7c27f0caa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.867532730102539, 'inference': 10.097503662109375, 'postprocess': 0.3921985626220703},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-87-_jpg.rf.9c686985ca1aaf482818536bad3a52d2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4445781707763672, 'inference': 9.106159210205078, 'postprocess': 0.3609657287597656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 38,  46,  39],
         [ 47,  55,  48],
         [ 59,  68,  65],
         ...,
         [ 11,   1,  13],
         [ 14,   4,  16],
         [ 15,   5,  17]],
 
        [[ 28,  36,  29],
         [ 36,  44,  37],
         [ 47,  56,  53],
         ...,
         [ 15,   5,  17],
         [ 20,  10,  22],
         [ 22,  12,  24]],
 
        [[ 15,  23,  16],
         [ 22,  30,  23],
         [ 34,  41,  38],
         ...,
         [ 20,  10,  22],
         [ 27,  17,  29],
         [ 30,  20,  32]],
 
        ...,
 
        [[ 40,  38,  44],
         [ 39,  37,  43],
         [ 38,  36,  42],
         ...,
         [107, 105, 111],
         [110, 108, 114],
         [112, 110, 116]],
 
        [[ 41,  39,  45],
         [ 40,  38,  44],
         [ 38,  36,  42],
         ...,
         [108, 106, 112],
         [111, 109, 115],
         [112, 110, 116]],
 
        [[ 42,  40,  46],
         [ 41,  39,  45],
         [ 39,  37,  43],
         ...,
         [108, 106, 112],
         [111, 109, 115],
         [113, 111, 117]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-87-_jpg.rf.f695dc4e18d8786274de900672c1e629.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9011497497558594, 'inference': 9.259700775146484, 'postprocess': 0.5290508270263672},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 5,  0,  0],
         [ 5,  0,  0],
         [ 5,  0,  0],
         ...,
         [ 1,  1,  1],
         [ 1,  1,  1],
         [ 1,  1,  1]],
 
        [[10,  4,  5],
         [ 9,  4,  5],
         [ 8,  2,  3],
         ...,
         [ 1,  1,  1],
         [ 1,  1,  1],
         [ 1,  1,  1]],
 
        [[ 4,  0,  0],
         [ 2,  0,  0],
         [ 4,  0,  0],
         ...,
         [ 1,  1,  1],
         [ 1,  1,  1],
         [ 1,  1,  1]],
 
        ...,
 
        [[ 1,  1,  1],
         [ 1,  1,  1],
         [ 1,  1,  1],
         ...,
         [60, 64, 65],
         [54, 58, 59],
         [58, 62, 63]],
 
        [[ 1,  1,  1],
         [ 1,  1,  1],
         [ 1,  1,  1],
         ...,
         [58, 62, 63],
         [54, 58, 59],
         [54, 58, 59]],
 
        [[ 1,  1,  1],
         [ 1,  1,  1],
         [ 1,  1,  1],
         ...,
         [63, 67, 68],
         [56, 60, 61],
         [47, 51, 52]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-89-_jpg.rf.280b8654e1d942e9843333a4a630a473.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9526481628417969, 'inference': 9.50312614440918, 'postprocess': 0.4825592041015625},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        ...,
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]],
 
        [[64, 64, 64],
         [64, 64, 64],
         [64, 64, 64],
         ...,
         [64, 64, 64],
         [64, 64, 64],
         [64, 64, 64]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-89-_jpg.rf.88d2db98329fc9ad290d1f559d3c8c76.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.491546630859375, 'inference': 8.730411529541016, 'postprocess': 0.3554821014404297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[174, 190, 189],
         [175, 191, 190],
         [179, 194, 197],
         ...,
         [104, 146, 158],
         [ 94, 138, 151],
         [ 79, 123, 136]],
 
        [[194, 209, 211],
         [189, 204, 206],
         [182, 197, 200],
         ...,
         [ 68, 106, 118],
         [ 64, 104, 116],
         [ 59,  99, 111]],
 
        [[196, 211, 214],
         [190, 205, 208],
         [180, 195, 198],
         ...,
         [ 42,  72,  83],
         [ 41,  73,  84],
         [ 44,  76,  87]],
 
        ...,
 
        [[ 83,  87,  88],
         [ 68,  72,  73],
         [ 82,  86,  87],
         ...,
         [ 60,  62,  62],
         [ 59,  61,  61],
         [ 58,  60,  60]],
 
        [[ 85,  89,  90],
         [ 84,  88,  89],
         [101, 105, 106],
         ...,
         [ 65,  67,  67],
         [ 58,  60,  60],
         [ 52,  54,  54]],
 
        [[ 99, 103, 104],
         [106, 110, 111],
         [126, 130, 131],
         ...,
         [ 65,  67,  67],
         [ 51,  53,  53],
         [ 40,  42,  42]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-89-_jpg.rf.f60ba1af20cc526575b9ddab3e79052d.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8296241760253906, 'inference': 9.22536849975586, 'postprocess': 0.34046173095703125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [24, 17, 20],
         [24, 18, 19],
         [24, 18, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [23, 18, 19],
         [24, 18, 19],
         [23, 18, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [21, 19, 18],
         [23, 19, 18],
         [21, 19, 18]],
 
        ...,
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]],
 
        [[19, 19, 19],
         [19, 19, 19],
         [19, 19, 19],
         ...,
         [19, 19, 19],
         [19, 19, 19],
         [19, 19, 19]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-9-_jpg.rf.06f81aab8edc8a1beb3269f379c8e4a8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.379251480102539, 'inference': 9.292840957641602, 'postprocess': 0.36334991455078125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 51,  34,  21],
         [ 46,  29,  16],
         [ 43,  27,  15],
         ...,
         [  2,   1,   0],
         [  2,   1,   0],
         [  2,   1,   0]],
 
        [[ 47,  30,  17],
         [ 42,  25,  12],
         [ 40,  24,  12],
         ...,
         [  2,   1,   0],
         [  2,   1,   0],
         [  2,   1,   0]],
 
        [[ 50,  34,  21],
         [ 45,  29,  16],
         [ 41,  25,  13],
         ...,
         [  0,   1,   0],
         [  0,   1,   0],
         [  0,   1,   0]],
 
        ...,
 
        [[133, 157, 117],
         [130, 154, 114],
         [129, 153, 113],
         ...,
         [108, 101,  76],
         [115, 108,  81],
         [ 90,  83,  56]],
 
        [[153, 174, 135],
         [142, 166, 126],
         [134, 158, 118],
         ...,
         [110, 103,  78],
         [112, 105,  78],
         [ 81,  74,  47]],
 
        [[158, 179, 140],
         [146, 167, 128],
         [131, 155, 115],
         ...,
         [108, 101,  76],
         [106,  99,  72],
         [ 71,  64,  37]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-9-_jpg.rf.10d9db0c8fac4eb5b01de9fc71dd19da.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8978118896484375, 'inference': 15.008211135864258, 'postprocess': 0.5078315734863281},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 67,  51,  34],
         [ 94,  78,  61],
         [125, 109,  92],
         ...,
         [163, 128,  88],
         [162, 126,  86],
         [158, 122,  82]],
 
        [[ 78,  62,  45],
         [ 94,  78,  61],
         [118, 102,  85],
         ...,
         [151, 116,  76],
         [155, 119,  79],
         [155, 119,  79]],
 
        [[ 98,  82,  65],
         [ 97,  81,  64],
         [112,  96,  79],
         ...,
         [136, 101,  61],
         [146, 110,  70],
         [150, 114,  74]],
 
        ...,
 
        [[ 68,  60,  37],
         [ 70,  62,  39],
         [ 77,  68,  48],
         ...,
         [178, 192, 168],
         [182, 196, 172],
         [184, 198, 174]],
 
        [[ 80,  72,  49],
         [ 68,  60,  37],
         [ 69,  60,  40],
         ...,
         [176, 190, 166],
         [175, 189, 165],
         [175, 189, 165]],
 
        [[ 88,  80,  57],
         [ 60,  52,  29],
         [ 51,  42,  22],
         ...,
         [174, 188, 164],
         [169, 183, 159],
         [166, 180, 156]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-9-_jpg.rf.62204b022d0e43f1804769f4fc142c28.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3594627380371094, 'inference': 10.219573974609375, 'postprocess': 0.4749298095703125},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [13, 13, 13],
         [13, 13, 13]],
 
        ...,
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [18, 14, 13],
         [18, 14, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [18, 14, 13],
         [18, 14, 13]],
 
        [[13, 13, 13],
         [13, 13, 13],
         [13, 13, 13],
         ...,
         [13, 13, 13],
         [18, 14, 13],
         [18, 14, 13]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-90-_jpg.rf.240ef6f5fe43b76b41bda46a16cb5718.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7821788787841797, 'inference': 9.502887725830078, 'postprocess': 0.6463527679443359},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[169, 116,  59],
         [166, 113,  56],
         [174, 124,  66],
         ...,
         [ 70,  82,  84],
         [ 70,  82,  84],
         [ 70,  82,  84]],
 
        [[171, 118,  61],
         [168, 115,  58],
         [175, 125,  67],
         ...,
         [ 71,  83,  85],
         [ 70,  82,  84],
         [ 70,  82,  84]],
 
        [[135,  82,  25],
         [132,  79,  22],
         [136,  85,  29],
         ...,
         [ 71,  83,  85],
         [ 71,  83,  85],
         [ 70,  82,  84]],
 
        ...,
 
        [[ 60,  72,  72],
         [ 58,  70,  70],
         [ 59,  71,  71],
         ...,
         [ 40,  45,  48],
         [ 48,  51,  55],
         [ 50,  53,  57]],
 
        [[106, 118, 118],
         [101, 113, 113],
         [100, 112, 112],
         ...,
         [ 47,  52,  55],
         [ 37,  40,  44],
         [ 35,  38,  42]],
 
        [[100, 112, 112],
         [ 96, 108, 108],
         [ 99, 111, 111],
         ...,
         [ 43,  48,  51],
         [ 32,  35,  39],
         [ 34,  37,  41]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-90-_jpg.rf.9b8c41e2268c9abdc95c18b3567fb764.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9919872283935547, 'inference': 9.970903396606445, 'postprocess': 0.8771419525146484},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-90-_jpg.rf.f684f3079bfb74c1078e8f8dc7e6fd35.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.341104507446289, 'inference': 9.914159774780273, 'postprocess': 0.6074905395507812},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[220, 207, 193],
         [201, 188, 174],
         [181, 168, 152],
         ...,
         [200, 199, 208],
         [251, 252, 255],
         [248, 249, 255]],
 
        [[201, 188, 174],
         [189, 176, 162],
         [177, 164, 148],
         ...,
         [166, 165, 174],
         [240, 241, 251],
         [251, 252, 255]],
 
        [[177, 164, 150],
         [173, 160, 146],
         [171, 158, 142],
         ...,
         [110, 109, 118],
         [207, 208, 218],
         [251, 252, 255]],
 
        ...,
 
        [[185, 185, 185],
         [182, 182, 182],
         [184, 184, 184],
         ...,
         [189, 189, 189],
         [227, 227, 227],
         [255, 255, 255]],
 
        [[198, 198, 198],
         [191, 191, 191],
         [183, 183, 183],
         ...,
         [214, 214, 214],
         [241, 241, 241],
         [255, 255, 255]],
 
        [[208, 208, 208],
         [198, 198, 198],
         [184, 184, 184],
         ...,
         [233, 233, 233],
         [250, 250, 250],
         [255, 255, 255]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-91-_jpg.rf.d4d38cce067db39408794242a91f0efa.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8565654754638672, 'inference': 9.139060974121094, 'postprocess': 0.7269382476806641},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[  0,   0,   0],
         [  3,   3,   3],
         [  4,   4,   4],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        [[ 15,  13,  13],
         [ 10,   8,   8],
         [  6,   4,   4],
         ...,
         [  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0]],
 
        ...,
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [ 96, 104, 103],
         [ 89,  97,  96],
         [ 82,  93,  91]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [ 96, 104, 103],
         [ 89,  97,  96],
         [ 82,  93,  91]],
 
        [[  0,   0,   0],
         [  0,   0,   0],
         [  0,   0,   0],
         ...,
         [ 96, 104, 103],
         [ 89,  97,  96],
         [ 82,  93,  91]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-91-_jpg.rf.d541de11cd8503ce68f73abd1fb02717.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.5282630920410156, 'inference': 8.700847625732422, 'postprocess': 0.7181167602539062},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-91-_jpg.rf.fdcc03fa51403644168dfca373c9ee0c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8067359924316406, 'inference': 8.830785751342773, 'postprocess': 0.43010711669921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 63,  54,  50],
         [ 79,  70,  66],
         [ 83,  76,  73],
         ...,
         [129, 142, 150],
         [139, 150, 158],
         [143, 154, 162]],
 
        [[ 95,  86,  82],
         [144, 138, 133],
         [112, 105, 102],
         ...,
         [116, 129, 137],
         [115, 128, 136],
         [115, 128, 136]],
 
        [[202, 195, 192],
         [242, 237, 234],
         [168, 163, 162],
         ...,
         [111, 127, 134],
         [116, 132, 139],
         [124, 140, 147]],
 
        ...,
 
        [[161, 164, 169],
         [143, 146, 151],
         [152, 155, 160],
         ...,
         [167, 178, 182],
         [167, 178, 182],
         [122, 133, 137]],
 
        [[168, 171, 176],
         [135, 138, 143],
         [173, 176, 181],
         ...,
         [150, 161, 165],
         [130, 141, 145],
         [ 94, 105, 109]],
 
        [[150, 153, 158],
         [158, 161, 166],
         [158, 161, 166],
         ...,
         [150, 161, 165],
         [117, 128, 132],
         [120, 131, 135]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-92-_jpg.rf.453e3b0d19f45cc3adda8b6c2fd35f78.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.932382583618164, 'inference': 9.802103042602539, 'postprocess': 0.3554821014404297},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-92-_jpg.rf.495b1e2e681aaf8bd9ec84f29044ff68.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.565694808959961, 'inference': 9.148120880126953, 'postprocess': 0.7166862487792969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 3],
         [0, 0, 3],
         [0, 0, 3]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 3],
         [0, 0, 3],
         [0, 0, 3]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 1],
         [2, 0, 1],
         [2, 0, 1]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [2, 0, 0],
         [2, 0, 0],
         [2, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 0, 0],
         [4, 0, 0],
         [4, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [4, 0, 0],
         [4, 0, 0],
         [4, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-92-_jpg.rf.f3247194c884aec0a806958acbda7b38.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.918792724609375, 'inference': 8.86392593383789, 'postprocess': 0.8721351623535156},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[191, 200, 214],
         [192, 201, 215],
         [194, 203, 216],
         ...,
         [ 85,  88,  86],
         [ 89,  92,  90],
         [ 96,  99,  97]],
 
        [[191, 200, 214],
         [192, 201, 215],
         [194, 203, 216],
         ...,
         [ 85,  88,  86],
         [ 89,  92,  90],
         [ 95,  98,  96]],
 
        [[190, 199, 213],
         [191, 200, 214],
         [194, 203, 216],
         ...,
         [ 88,  89,  87],
         [ 89,  92,  90],
         [ 94,  97,  95]],
 
        ...,
 
        [[ 86,  88,  96],
         [ 71,  73,  81],
         [ 58,  60,  68],
         ...,
         [ 93, 103, 113],
         [ 92, 102, 112],
         [ 91, 101, 111]],
 
        [[ 83,  85,  93],
         [ 72,  74,  82],
         [ 64,  66,  74],
         ...,
         [ 91, 101, 111],
         [ 88,  98, 108],
         [ 87,  97, 107]],
 
        [[ 82,  84,  92],
         [ 74,  76,  84],
         [ 70,  72,  80],
         ...,
         [ 91, 101, 111],
         [ 86,  96, 106],
         [ 84,  94, 104]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-93-_jpg.rf.13ed0023300da63a2f33a803df745530.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.4111995697021484, 'inference': 8.825540542602539, 'postprocess': 0.8492469787597656},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [1, 1, 1],
         ...,
         [0, 1, 0],
         [7, 8, 6],
         [2, 1, 0]],
 
        [[0, 0, 0],
         [1, 1, 1],
         [1, 1, 1],
         ...,
         [0, 1, 0],
         [5, 6, 4],
         [2, 1, 0]],
 
        [[2, 2, 2],
         [1, 1, 1],
         [0, 0, 0],
         ...,
         [0, 1, 0],
         [4, 5, 3],
         [2, 1, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-93-_jpg.rf.7a97c10314fb3e87620c30001a1ebda8.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.007722854614258, 'inference': 8.96596908569336, 'postprocess': 0.3693103790283203},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-93-_jpg.rf.d1fd0f49bc38e1f7395f550a40ffda27.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.424551010131836, 'inference': 8.606910705566406, 'postprocess': 0.4780292510986328},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-94-_jpg.rf.2aabac75e10d9308647adbe3285a5498.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0074844360351562, 'inference': 9.140968322753906, 'postprocess': 0.3948211669921875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-94-_jpg.rf.385cffc613c080827eaa7d1176be5ae3.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.7962455749511719, 'inference': 9.03177261352539, 'postprocess': 0.4420280456542969},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[157, 146, 149],
         [141, 132, 135],
         [128, 124, 130],
         ...,
         [178, 173, 172],
         [189, 184, 183],
         [193, 188, 187]],
 
        [[142, 140, 146],
         [134, 134, 140],
         [128, 134, 141],
         ...,
         [194, 189, 188],
         [201, 196, 195],
         [199, 194, 193]],
 
        [[120, 139, 147],
         [108, 128, 139],
         [103, 125, 136],
         ...,
         [203, 198, 197],
         [205, 200, 199],
         [195, 190, 189]],
 
        ...,
 
        [[111,  97,  99],
         [131, 117, 119],
         [147, 134, 136],
         ...,
         [106, 115, 124],
         [102, 111, 120],
         [100, 109, 118]],
 
        [[144, 130, 132],
         [149, 135, 137],
         [161, 148, 150],
         ...,
         [101, 110, 119],
         [ 99, 108, 117],
         [102, 111, 120]],
 
        [[155, 141, 143],
         [147, 133, 135],
         [161, 148, 150],
         ...,
         [108, 117, 126],
         [104, 113, 122],
         [110, 119, 128]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-94-_jpg.rf.ba3925642e2ccb4869665efacd0c7649.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.6889572143554688, 'inference': 9.35506820678711, 'postprocess': 0.3650188446044922},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-96-_jpg.rf.24d21cef4cfb4d0f7bd6bcc6bc047d4c.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.811981201171875, 'inference': 12.051820755004883, 'postprocess': 0.6728172302246094},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        ...,
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]],
 
        [[9, 9, 9],
         [9, 9, 9],
         [9, 9, 9],
         ...,
         [9, 9, 9],
         [9, 9, 9],
         [9, 9, 9]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-96-_jpg.rf.462bc937bdab51c156a191ebd1cfc9c2.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3539791107177734, 'inference': 9.194135665893555, 'postprocess': 0.4558563232421875},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[115, 132, 129],
         [110, 127, 124],
         [ 81,  95,  93],
         ...,
         [186, 187, 191],
         [187, 188, 192],
         [187, 188, 192]],
 
        [[124, 141, 138],
         [111, 128, 125],
         [ 75,  89,  87],
         ...,
         [186, 187, 191],
         [186, 187, 191],
         [187, 188, 192]],
 
        [[128, 145, 142],
         [106, 123, 120],
         [ 65,  79,  77],
         ...,
         [185, 186, 190],
         [186, 187, 191],
         [186, 187, 191]],
 
        ...,
 
        [[ 89,  91,  99],
         [ 86,  88,  96],
         [ 76,  80,  85],
         ...,
         [127, 139, 143],
         [132, 148, 154],
         [132, 151, 156]],
 
        [[ 88,  91,  96],
         [ 76,  79,  84],
         [ 61,  65,  70],
         ...,
         [123, 138, 141],
         [128, 147, 152],
         [127, 147, 152]],
 
        [[ 85,  88,  93],
         [ 68,  71,  76],
         [ 52,  56,  61],
         ...,
         [110, 127, 130],
         [115, 134, 139],
         [118, 138, 143]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-96-_jpg.rf.de1c39ae1a6f184297eac1814e66ca80.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.9004344940185547, 'inference': 8.930683135986328, 'postprocess': 0.6647109985351562},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9],
         ...,
         [ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9]],
 
        [[ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9],
         ...,
         [ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9]],
 
        [[ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9],
         ...,
         [ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9]],
 
        ...,
 
        [[ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9],
         ...,
         [ 5,  8,  6],
         [ 5,  7,  7],
         [ 9, 11, 11]],
 
        [[ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9],
         ...,
         [ 5,  8,  6],
         [ 5,  7,  7],
         [10, 12, 12]],
 
        [[ 9,  9,  9],
         [ 9,  9,  9],
         [ 9,  9,  9],
         ...,
         [ 4,  7,  5],
         [ 6,  8,  8],
         [10, 12, 12]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-97-_jpg.rf.405aad85024f81d93922f28864ca1554.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.8429756164550781, 'inference': 9.10639762878418, 'postprocess': 0.38695335388183594},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 5,  3,  2],
         [ 8,  6,  5],
         [19, 17, 16],
         ...,
         [55, 53, 53],
         [11,  9,  9],
         [ 4,  2,  2]],
 
        [[ 3,  1,  0],
         [ 7,  5,  4],
         [19, 17, 16],
         ...,
         [54, 52, 52],
         [ 9,  7,  7],
         [ 2,  0,  0]],
 
        [[ 2,  0,  0],
         [ 5,  3,  2],
         [18, 16, 15],
         ...,
         [53, 51, 51],
         [ 9,  7,  7],
         [ 2,  0,  0]],
 
        ...,
 
        [[10,  8,  0],
         [24, 22, 14],
         [71, 68, 63],
         ...,
         [34, 36, 30],
         [16, 17,  8],
         [ 4,  5,  0]],
 
        [[ 6,  5,  0],
         [22, 20, 12],
         [69, 66, 61],
         ...,
         [34, 36, 30],
         [16, 17,  8],
         [ 6,  7,  0]],
 
        [[ 7,  6,  0],
         [23, 22, 12],
         [72, 69, 64],
         ...,
         [36, 38, 32],
         [19, 20, 11],
         [10, 11,  2]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-97-_jpg.rf.5fdb2665d8114a571692b42b87a9da50.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.3196468353271484, 'inference': 9.017229080200195, 'postprocess': 0.3638267517089844},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0]],
 
        ...,
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [91, 93, 93],
         [47, 49, 50],
         [ 0,  1,  2]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [88, 90, 90],
         [43, 45, 46],
         [ 0,  0,  1]],
 
        [[ 0,  0,  0],
         [ 0,  0,  0],
         [ 0,  0,  0],
         ...,
         [86, 88, 88],
         [41, 43, 44],
         [ 0,  0,  1]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-97-_jpg.rf.f126b87cc73c733f34169b87ffbe0a52.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0515918731689453, 'inference': 9.443044662475586, 'postprocess': 0.6136894226074219},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        ...,
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]],
 
        [[3, 3, 3],
         [3, 3, 3],
         [3, 3, 3],
         ...,
         [3, 3, 3],
         [3, 3, 3],
         [3, 3, 3]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-98-_jpg.rf.87c1a2590b120c4cb812f9702e6bc851.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 1.470804214477539, 'inference': 9.1705322265625, 'postprocess': 0.6773471832275391},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[ 69, 105,  93],
         [ 53,  89,  77],
         [ 64, 100,  88],
         ...,
         [ 17,  21,  16],
         [ 16,  20,  15],
         [ 15,  19,  14]],
 
        [[ 57,  91,  80],
         [ 38,  74,  62],
         [ 70, 104,  93],
         ...,
         [ 17,  21,  16],
         [ 16,  20,  15],
         [ 15,  19,  14]],
 
        [[ 59,  91,  80],
         [ 36,  70,  59],
         [ 62,  94,  83],
         ...,
         [ 17,  21,  16],
         [ 16,  20,  15],
         [ 15,  19,  14]],
 
        ...,
 
        [[ 76,  87,  91],
         [ 71,  82,  86],
         [ 77,  88,  92],
         ...,
         [104, 115, 119],
         [ 80,  91,  95],
         [ 89, 100, 104]],
 
        [[ 93, 104, 108],
         [102, 113, 117],
         [118, 129, 133],
         ...,
         [ 90, 101, 105],
         [ 91, 102, 106],
         [ 89, 100, 104]],
 
        [[129, 140, 144],
         [136, 147, 151],
         [138, 149, 153],
         ...,
         [ 69,  80,  84],
         [ 93, 104, 108],
         [ 72,  83,  87]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-98-_jpg.rf.9f186514621bd6868261aefd8bd19a66.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.2029876708984375, 'inference': 9.012222290039062, 'postprocess': 0.5204677581787109},
 ultralytics.engine.results.Results object with attributes:
 
 boxes: ultralytics.engine.results.Boxes object
 keypoints: None
 masks: None
 names: {0: 'Pothole'}
 obb: None
 orig_img: array([[[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        ...,
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]],
 
        [[0, 0, 0],
         [0, 0, 0],
         [0, 0, 0],
         ...,
         [0, 0, 0],
         [0, 0, 0],
         [0, 0, 0]]], dtype=uint8)
 orig_shape: (640, 640)
 path: '/mnt/d/workspace/Pothole/dataset/train/images/pic-98-_jpg.rf.b2a2cf125087b692dbc9ea11ae97ddd4.jpg'
 probs: None
 save_dir: 'runs/detect/predict'
 speed: {'preprocess': 2.0623207092285156, 'inference': 9.786367416381836, 'postprocess': 1.1909008026123047}]

what does model() method do params

In [10]:
# v10n_pre before training (that person detection model which detects persons not potholes)
model_pretrained.summary
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
Cell In[10], line 2
      1 # v10n_pre before training (that person detection model which detects persons not potholes)
----> 2 model_pretrained.summary

NameError: name 'model_pretrained' is not defined
In [12]:
# v10n_pre_trained_100 
model_pre_trained.summa
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
Cell In[12], line 2
      1 # v10n_pre_trained_100 
----> 2 model_pre_trained.summary()

File ~/.local/lib/python3.10/site-packages/torch/nn/modules/module.py:1614, in Module.__getattr__(self, name)
   1612     if name in modules:
   1613         return modules[name]
-> 1614 raise AttributeError("'{}' object has no attribute '{}'".format(
   1615     type(self).__name__, name))

AttributeError: 'YOLO' object has no attribute 'summary'
In [ ]:
# v10n_u_trained
model_u_trained.summary
In [ ]:
# v10n_untrained (before training didnt detect anything)
model_untrained.summary
In [ ]:
# v10x_trained_pretrained_6
model_heavy_pre_trained=YOLO('runs/detect/v10x_trained_pretrained_6_train/weights/best.pt')
model_heavy_pre_trained.summary